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.
There are 2 problems I see with your current code:
strlen()
on each loop iteration, causing a timeout.O(len(s1+s2)) is an expectedc complexity for this problem, and you seem to get this part right.
I just tried your solution and I get no timeout, just incorrect answers in large tests?
My C code runs with a time complexity of O(s1.length() + s2.length()) for its worst case and O(s2.length() * 2) in the best case but i still get a timeout. What might be cause for this (I have one for loop iterating over the first string and one itereating over the second string they are not nested. Possible memory leaks have been fixed)