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.
@krishp True, my solution was similar, except that I did | if lng > wdth:, else: | I don't see any need for the "elif" here, and using an else instead means you don't have to use the ">=". If they equal, they'll be sent to the else which will still end with a valid solution.
Hey Isaac. I was looking at your solution and I couldn't understand why there is the if lng>=width. Why won't it work if lng>wdth?