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
Letters should only go from A to F. This goes both to upper and lower case.
It seems you are calling every possibe letter in the alphabet.
This comment is hidden because it contains spoiler information about the solution
I will close the issue once the pending kumite is merged.
Thanks!
Thanks for your guide, I learned alot of stuff in just one day.
I added this
if check1+check2+check3 != 3:
also in the fork.I will close the issue once it merged
oh, you did that in a fork? I thought you actually updated the tests. This explains that...
But in that case, you shouldn't have closed the issue (since nothing was ipdated yet.
.
I took a look. Seems ok excpet for one thing:
if not all([check1 ,check2, check3]):
instead ofif any([check1 ,check2, check3]) == False:
(which won't do what you wan't). Or even simpler:if check1+check2+check3 != 3:
kindly check my pending translation
it gives 18 tests.
I did all breaks exactly as you suggested
the kumite pending results
fixed, your solution generates invalid values such as #1b973
kindly check again
Python.
what language?
Tests should import the user's solution AND use that import.
not good yet. ;p
see here
python: not handled yet. See here and the messages in the same thread.
nope... you still have 6000 displayed assertions!
I put some
break
here and there for specific reasons. I currently see none of them in the tests...Loading more items...