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.
numbers.splice(numbers[index],1);
should be changed to:
numbers.splice(index,1);
the first parameter of splice function is start index to remove, not the item
This comment is hidden because it contains spoiler information about the solution
Heh jinx I beat you to it :P
Thanks!
Your code fails when n = n (string). It says in the description
It's your duty to verify that n is a valid positive integer number. If not, please, return false (None for Python).
so you have to return None if n is not an integer.return (n(n+1)/2)
thinks you are trying to call a function instead of multiplying it - just add *.This comment is hidden because it contains spoiler information about the solution