I am currently solving Project Euler 59. I take given ASCII sequence and xor it with 3 letter converted ASCII key. When I xor it and 2 elements in a row by chance are \
and n
then my result becomes like that:
\\n
instead of \n
As far as I understand it puts extra backslash to ignore new line, but I need my list exactly as it is for obvious reason. How can I have \n
in my list without it becoming new line?
EDIT: now I double checked, everytime xor result becomes \
, it changes to \\
automatically.