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.
It only works both ways by chance that second case. You need to take into account every possible way of removing pairs. The expected value is the one which is alphabetically the smallest (left to right).
"czab"
<"zacb"
. But remember, the remaining characters still need to maintain their original order. Characters cannot "jump" over other ones.ywbye
kthxbye
I may have not completely understood the instructions, but why would
solve("czaccb")
give"czab"
instead of"zacb"
?I naively thought that you should use a rolling algorithm to remove each duplicate beginning on the left side :
edit : this algorithm works with the second example
What am I getting wrong?