Блог пользователя adzo261

Автор adzo261, история, 6 лет назад, По-английски

I am getting a runtime error on test case 6. Since it is a large test case, I am unable to find what's giving RE in my code.

Can someone please have a look at my code, or give me some small test case similar to case 6.

Link to my solution

  • Проголосовать: нравится
  • -13
  • Проголосовать: не нравится

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

In the last while loop, you erase it1, then you use it, but after erasing an iterator, we cannot be sure to where this iterator points, so we should use the it, then erase it.

»
6 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Thank you so much! I forgot about that.