xiaowuc1's blog

By xiaowuc1, 3 years ago, In English

On szkopul, I'm seeing problem statements where the \n character appears instead of actual newlines, even in sample input/output. Other non-ASCII characters appear to be written in escaped format also instead of rendered properly.

I'm curious if this is a local issue for just myself and, if not, if anyone has a good short-term fix for this.

  • Vote: I like it
  • +14
  • Vote: I do not like it

»
3 years ago, # |
  Vote: I like it +11 Vote: I do not like it

I’m experiencing the same issue. As for the fix (for the newlines in sample input/output), I sometimes run a C++ code containing “cout << ( input goes here );” to get the “\n”s converted into newlines. I know it’s not a very nice solution, but for big test cases it’s faster than erasing “\n”s manually.

»
3 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Can you link an example?