This comment is hidden because it contains spoiler information about the solution
Sorry, I thought it would be visible only to those who have already completed the kata. Will flag properly in the future!
Can I see an example of Difficult Random Test 1?
I was wondering the same thing...
it's because your code is not efficient enough, i.e. it takes too much time to execute. in Python, "for" loops must be avoided as much as possible: use built-in functions or list comprehensions whenever possible
Loading collection data...
This comment is hidden because it contains spoiler information about the solution
Sorry, I thought it would be visible only to those who have already completed the kata. Will flag properly in the future!
This comment is hidden because it contains spoiler information about the solution
Can I see an example of Difficult Random Test 1?
I was wondering the same thing...
it's because your code is not efficient enough, i.e. it takes too much time to execute.
in Python, "for" loops must be avoided as much as possible: use built-in functions or list comprehensions whenever possible