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
I met the same problem in another question...
in python2.7 (int / int is int) if you want a float try (float(int) / int)
in python3 (int / int is float)
hope this can help you
I passed it after figure out the meaning of the title.Thank you very much!
Sorry, I am not very good at English.I will try again.Thank you!
testing(longest_consec(["it","wkppv","ixoyx", "3452", "zzzzzzzzzzzz"], 3), "ixoyx3452zzzzzzzzzzzz")
len('wkppv') == len('ixoyx')
testing(longest_consec(["itvayloxrp","wkppqsztdkmvcuwvereiupccauycnjutlv","vweqilsfytihvrzlaodfixoyxvyuyvgpck"], 2), "wkppqsztdkmvcuwvereiupccauycnjutlvvweqilsfytihvrzlaodfixoyxvyuyvgpck")
len(test[1]) == len(test[2])
Are they contradictory?