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 thought
|n|
means the absolute value ofn
, but fineMarking as resolved if no further issues
|n| means the length of n as a binary string is less than or equal to 10^5. This doesnt guarentee that it can be expressee as an integer in Python
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
This is just the end of the "small" random tests, "medium" and "large" are obviously larger:
Under "large", it's even worse:
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?
Is it fine now? The first thing
$1 \leq |n| \leq 10^5$
looks to be right.yez
issues:
1 ≤ ∣n∣ ≤ 10
which is wrongn = 11
but "Note that n will be represented as a binary string"I was able to improve my speed considerably. I was creating sets of the same list over and over again.
Oops, done.
Did you forget to update tests? The description states that
n <= 10**18
but large binary strings are tested. I prefer binary strings: The kata is much more challenging with them. So I suggest to revert the description back to the original description.Loading more items...