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.
the operation of extracting the square root of a number and then squaring
it can lead to minor rounding errors due to
working with floating point numbers
This comment is hidden because it contains spoiler information about the solution
rparks52 is right (assuming "p = 1" is "product = 1".)
This process is called initialization; where a variable is assigned for later parts of the code to use.
for example : arr = [1, 2, 3, 4, 5]
Following this process, regardless of what integers/floats are in the array, they will definitely multiply each other.
Okay this one make me laugh, i imagined this as a someone slapping an object twice on both sides
This comment is hidden because it contains spoiler information about the solution