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.
Yes, I'll try to arrange this a bit but in the very first lines (3rd sentence) it is said:
Thanks for your help.
@g964: A little bit of both. All the talk about "divisiblity" makes a user think that this will probably be something where one should return
true
orfalse
and the number of steps needed to get there. Only in the last sentence you actually say that you're interested inm < 100
and the number of steps to get there, which is quite late.Too long or misleading?
Well, to be honest, the description is rather misleading. It could be shortened to:
This comment is hidden because it contains spoiler information about the solution
uh ok ok got it,
I was doing that but now it's working, thanks.
Never modify the input of a function.
The same list is being used to test the function multiple times.
Since you modify the list in the first call. Your answer is different for the scond call.
What's going on?
in the second test I get this..
"'n' is 2: [3, 4, 5, 1, 2] should equal [4, 5, 1, 2, 3]" what??
but when I run my code in https://repl.it/languages/python3 I get the right return [4, 5, 1, 2, 3]... is this a bug or something?
I did something worse :c