ASawe2.6Main's blog

By ASawe2.6Main, history, 23 months ago, In English

Hello, I've been attempting to solve this question: https://codeforces.com/contest/1666/problem/D

So far, I've deduced that it is possible to simulate the question to construct an answer, which will be compared with the second string. However, I'm unsure on what case or cases will cause my code to fail, but I'm assuming it has something to do with the .remove() function.

Any help would be appreciated.

Thanks!

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
23 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

remove function in lists raise error when the list can't find the element to be deleted , so use exception handling when you use remove function.
I modified your code but instead of RTE it gives WA on test 4.