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.
copy your code, and press reset(this resets test case suite and code editor)
have you converted the input to a 2d list?
"Days" are really test cases. so with each new test case, you are suposed to calculate the number of new listeners.
If on the first test
mountMoose.howMany(['John', 'Fred', 'BOb', 'carl', 'RyAn']);
is called, then your function should return 5 because they are all new listeners, as it is the first test (or "day").On the second test (or "day") if
mountMoose.howMany(['JoHn', 'Luke', 'AmAndA']);
is called, then your function would retrun 2 because John already listened in the first test.Hopefully this helps.
Because of that.