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.
Hi,
Your code is correct for finding sum om multiples of 3 and 5 under 10. But the description states that:
"returns the sum of all the multiples of 3 or 5 below the number passed in."
Since this only works for 10 and not any given number by the method, this will not work.
If you can change it such that it calculates all of then for the given number,it will work correctly!