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.
good
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Wow, after so many painful piecemeal additions for corner cases, you show make this look easy... http://giphy.com/gifs/MUeQeEQaDCjE4/html5
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
That's great to hear!
Wow, I learned so much from reading just one line of code! :)
Great solution! I learned a couple of things with this code. :)
thanks!
Obviously yes, since
[1.0, 2.0, 3.0]
is the same as and indistinguishable from[1, 2, 3]
.so should 'isIntArray([1.0, 2.0, 3.0]);' return true?
There are no integers in classic JS, all numbers are double precision floating point. "1.0" is the same as just "1".
what about this isIntArray([1.0, 2.0, 3.0]); ?
Loading more items...