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.
Then you should specify that, the user now needs to guess what is going on.
The defined function and the defined tests are inconsistent.
Javascript
The function takes just one array:
function lowest(array)
But the tests are sending three arrays:
lowest([15, 14, 13, 12, 10], [16, 17, 12, 9, 11], [18, 16, 15, 14, 12])
The test should be:
lowest([[15, 14, 13, 12, 10], [16, 17, 12, 9, 11], [18, 16, 15, 14, 12]])
Thanks
Tests are sending three arrays
Way too basic
Big Numbers in Java arent that big :)