Fix typo in math cheat sheet

pull/276/head
Jason Mustafa 3 years ago
parent a51384222b
commit f5f9dfdaa6

@ -47,7 +47,7 @@ When a question involves "whether a number is a multiple of X", the modulo opera
### Comparing floats ### Comparing floats
When dealing with floating point numbers, take note of rounding mistakes. Consider using epsilon comparisons instead of equality checks. E.g. `abs(x - y) <= 10e7` instead of `x == y`. When dealing with floating point numbers, take note of rounding mistakes. Consider using epsilon comparisons instead of equality checks. E.g. `abs(x - y) <= 10e-7` instead of `x == y`.
### Fast operators ### Fast operators

Loading…
Cancel
Save