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.
Print the input yourself.
LOL - amusingly I wrote: "I have two suggestions" -- then presented 3 items.
Reminds me of a joke:
Yeah but the test did not mention which string was tested, so no debugging is possible
(at least in python)
You've probably taken an approach that decrements the number until the new number has the same digits (i.e., next smaller) or some terminal case (e.g., 0, fewer-digits, etc.) This approach will timeout on this kata.
To get yourself unstuck, I have two suggestions:
Your solution returned a wrong result.
Because True is not a number.
Try reading the examples and problem description one more time
There are no floating point numbers in Python tests, and the input is a number, it can't be mutated. The first number is the result your function is returning, not the input value.
Why only 2 pills, you have read DestyNova's post and its answers, you can see there an example where each one of 3 people takes 4 pills and they cover 8 jars.
Are you mutating the input? (i.e. don't mutate/modify the input)