Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thanks for the explanation. Still didn't understand anything.
console.log('help me') 😀
This comment is hidden because it contains spoiler information about the solution
Read this: https://docs.codewars.com/training/troubleshooting/#expected-the-same
This comment is hidden because it contains spoiler information about the solution
console.log(Math.cbrt(n)); //output: 3.9999999999999996
Look at the example above, what's the problem? Yes, the cube root of 64 should be 4, but we have not seen the 4, but see 3.9999999999999996.
But in the browser output 4?
console.log(Math.cbrt(64) === 4) // true
How?