This comment is hidden because it contains spoiler information about the solution
can you explain this code?
there's a rounding error. for this value of N, log(N-1, 3) should return 10, but because floating point is used, it returns 9.999999998, which rounds down to 9.0.
N
log(N-1, 3)
Loading collection data...
This comment is hidden because it contains spoiler information about the solution
can you explain this code?
there's a rounding error. for this value of
N
,log(N-1, 3)
should return 10, but because floating point is used, it returns 9.999999998, which rounds down to 9.0.This comment is hidden because it contains spoiler information about the solution