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.
This comment is hidden because it contains spoiler information about the solution
O_O
Author think about seed as iterator :)
Do not use additional counters in code. Tests do not like it
DO NOT USE ADDITIONAL COUNTER !
Iterate seed by its own
Your solution is awesome for first tests :)))
I like your persistance to pass them)
Your solution is similar to my initial one.
The idea of the "seed" is to iterate it each time.
Ex.
Init random(10)
random() -> seed = 11
random() -> seed = 12
The author doesn't want us to use additional counter :)
This comment is hidden because it contains spoiler information about the solution