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.
U clearly did this on purpose XD
This is definitely an 8 kyu considering I solved it with 1 line, 1 method, no iterators, and didn't even have to check for 'fire'
I disagree with this being 8kyu, this is more like 7-6ish. Plus the description lies to you about what will be tested.
I feel like the poster had to be joking, if he went through that much effort
hire this person
This comment is hidden because it contains spoiler information about the solution
Closest to my solve except I iterated the string using for loop instead.
Strings have elements, arrays have elements. Certain iteration methods like map cant iterate a string without transforming it into an array. Certain ones can, like a for loop. You can access elements of a string the same way you can an array str[0]...
What an es5 monstrosity
I went with this solve just because it gave me a chance to mess with initialization, condition, increment.
I think it works without number due to type coercion? At least I did almost identically without converting the string for comparison
They chat gpt'd it, that is where the map is coming from XD
This comment is hidden because it contains spoiler information about the solution