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.
I am certain that my worst case complexity is O(n) yet, after I pass all tests and submit, I get failure due to a run time error taking longer than 6000 (ms maybe, I don't remember the unit). Why is this happening?
I pass all the tests and then when I submit I also show that I pass all the tests, however, a TypeError occurs: Traceback:
in
TypeError: init() takes exactly 2 arguments (1 given)
which does not occur on my local machine when I run this program. My init function is defined with (self, wires):
So, I don't understand what the issue is. Any ideas?