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.
Traceback (most recent call last):
File "/workspace/default/src/codewars-test/codewars_test/test_framework.py", line 111, in wrapper
func()
File "tests.py", line 37, in random
test.assert_equals(seven(n), sol)
File "/workspace/default/solution.py", line 38, in seven
conv_back = int(remaining_number)
ValueError: invalid literal for int() with base 10: '-'
my code is passing all the tests except this one, it seems to have characters (n,sol) instead of numbers(x,y) as a testcase. What am i supposed to do with this? Ive tried isinstance(m,str) but thats not working.