From 26e5e458aaca6231827459d98b9006570b67ea25 Mon Sep 17 00:00:00 2001 From: Saurish Kar Date: Thu, 18 Jan 2018 12:12:50 +0530 Subject: [PATCH] fix(seed): fixed typo in question 6 code (#16482) --- .../system-design-and-concept-questions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json b/seed/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json index 88122b06fa..8f635ab924 100644 --- a/seed/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json +++ b/seed/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json @@ -70,7 +70,7 @@ }, { "subtitle": "More Map Hacking", - "question": "What will the following code print out?\n
const results = [8, 5, 3]\n  .map((a, i, o) => o[o.length - i - i])\nconsole.log(results);
", + "question": "What will the following code print out?\n
const results = [8, 5, 3]\n  .map((a, i, o) => o[o.length - i - 1])\nconsole.log(results);
", "choices": [ "
[3, 5, 8]
", "
[5, 3, 8]
",