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 is so elegant.
It would get better rating in the "Best Practices" if you put the variable in quotes.
Super clean and readable!
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Assumes all numbers are in range, returns error for if not.
I like the method for checking decrement and increment numbers though it's not universal. I believe putting the conditions which is more likely to be true can improve the time efficiency.
i think, this line - "for num, color in zip(range(number, number+3), (2, 1, 1)):"
should be like this - "for num, color in zip(range(number, number+3), (2, 1, 0)):"
This comment is hidden because it contains spoiler information about the solution
I thought I was looking at my solution. So close!
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Works for any number of dimensions.
I like this one, the intent is very clear. Good job.
This comment is hidden because it contains spoiler information about the solution
Loading more items...