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.
In this case ("11 y.o") you can use a "split"-method 'int(s.split()[0])'
But task is very specific (from 0 to 9).
This comment is hidden because it contains spoiler information about the solution
Specification said it will be digit (0 through 9).
Since you know that there will be exactly 1 unique string in the entire array, you can identify the common strings by looking at either 2 indexes (best case scenario) or 3 (worst case). All you need is two strings to match to confirm it.
Read the description more carefully.
Guys, does anyone ever check the previous discussions? The input is
59884848459853
, then you need to return the next bigger number.Period.