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.
Total noob move. I just figured it out, it was staring me straight in the eye. The log Error message refers to the box above not below... I was looking at the wrong inputs which wasn't allowing me to troubleshoot correcly.
Thanks for your help!
Post your code here using markdown formatting and mark your post as having spoiler content.
I tried my code in sublime text and pythontutor both return a integer value. However the value that gets returned in those IDE's isn't 50 either. Any ideas?
Try your code in another place like pythontutor see why it returns
None
with that input value.This comment is hidden because it contains spoiler information about the solution
Duh! Should of thought of this. Thanks for the help!
Print the input (it'll appear above the test result), for some value your function is not returning (the default value for Python is None).
This comment is hidden because it contains spoiler information about the solution