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.
I've done added the tests to check if there's
=
operator and improved description.One can access the submitted solution at
/workspace/solution.txt
. Then one can easily search for==
operator.I think this did just that
n = 2.1 should return "2.1" not 2.100000000
I'm not sure if this is doable, but there isn't any way in which you enforce the disuse of the "==" operator. Otherwise, it's a great little thought experiment in computer science!
From what I understand, it might be better to reword the description to indicate they you would like the trailing zeros removed. The trailing zeros mean that there are numbers of significance that are just "out of view," but we can make a function that chops those off for sure. It's just a bit unclear when you are just asking to have the number turned into a string.
It may be that I'm missing something, but wouldn't this fail an array such as [0, 4, 6]? This function would return 5 if I'm not mistaken, not 2 as it should.