Repeating Key XOR Cipher
-
midnightslacker 10 years ago If your code passes the test case, and then fails the subsuquent input, there is no feedback from the problem (i.e. why did fail? Where there errors? What input is being tested? etc...)
How do we get feedback when our code passes the test case, but fails the subsequent tests, besides the obligatory "Wrong Answer"
-
zleblanc 10 years ago I don't understand why I can have a completely correct algorithm for testing this, get the answer right through all conversions, and still get 0 points? I convert everything to binary correctly and then XOR the key and ciphertext to get the plaintext. I'm a cryptologist so I know that's how it's done.
-
dheeraj 10 years ago you are probably new to the site. Cipher Key and Cipher Text is given as input to your code. Read those from
STDIN
standard input and then print the decoded text.Right now, you are just hardcoding the
sample input
andsample output
values to your code.
-
-
rameskum 10 years ago Read input from STDIN. Print output to STDOUT. What does this means? Can it be more descriptive?
-
Arqam 10 years ago Is it just me who is getting run time error on other cases after passing the sample test case. Is there any way in HackerRank where I could know the line number of the debugger for my RTE?
Sort 5 Discussions, By:
Please Log In in order to post a comment