From c5a087f8b734f9eff9ad6966014d3f6cc88f7034 Mon Sep 17 00:00:00 2001 From: Hassaan Pasha Date: Mon, 4 May 2020 15:41:19 +0500 Subject: [PATCH] fix (curriculum): corrected the valyue of the decrypted message --- .../project-euler/problem-59-xor-decryption.english.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-59-xor-decryption.english.md b/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-59-xor-decryption.english.md index 84e2ea321f..68f6ebfc70 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-59-xor-decryption.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-59-xor-decryption.english.md @@ -32,8 +32,8 @@ Your task has been made easy, as the encryption key consists of three lower case tests: - text: XORDecryption(cipher) should return a number. testString: assert(typeof XORDecryption(cipher) === 'number'); - - text: XORDecryption(cipher) should return 107359. - testString: assert.strictEqual(XORDecryption(cipher), 107359); + - text: XORDecryption(cipher) should return 129448. + testString: assert.strictEqual(XORDecryption(cipher), 129448); ```