| Front | What is Big-Ω? |
| Back | provides a lower-bound on the number of operations performed by an algorithm |
| Tags | time_complexity |
| Front | is the intercept |
| Aliases | the constant (in regression analysis)bias (in machine learning) |
| Back | the point at which the the regression line crosses the y-axis |
| Tags | basics statistical_learning |
| Q | convert a number of base x to base 16? |
| A | with int,hex,and slice |
| Syntax example | def baseConversion(n, x): return hex(int(n,base=x))[2:] |
| Tags | bit_manipulation integer standard_library |