From 575f366cad7a6808c4d530b270282d5bf8cc4895 Mon Sep 17 00:00:00 2001 From: vinsol Date: Sat, 30 Dec 2017 16:51:16 +0530 Subject: [PATCH] fix(seed): fixed correct answer typo in explanation of question 2 --- .../system-design-and-concept-questions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json b/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json index 62f7510042..88122b06fa 100644 --- a/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json +++ b/challenges/08-coding-interview-questions-and-take-home-assignments/system-design-and-concept-questions.json @@ -30,7 +30,7 @@ "
'ABC'
" ], "answer": 0, - "explanation": "The map function will return a new array with each element equal to the old element ran through a callback function. Our callback function takes our original element, changes it to a upper case, and then wraps it in an array; thus, leaving us with [['A', 'B', 'C']]" + "explanation": "The map function will return a new array with each element equal to the old element ran through a callback function. Our callback function takes our original element, changes it to a upper case, and then wraps it in an array; thus, leaving us with [['A'], ['B'], ['C']]" }, { "subtitle": "Maps on Maps",