From d268822fe445d9ce549d649019bcdde4d941d266 Mon Sep 17 00:00:00 2001 From: Bryan Moore <31421559+bryanleemoore@users.noreply.github.com> Date: Thu, 17 Nov 2022 15:15:12 -0800 Subject: [PATCH] fix(curriculum): remove comments and extra code (#48531) --- .../intermediate-algorithm-scripting/wherefore-art-thou.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/wherefore-art-thou.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/wherefore-art-thou.md index 975ebd190ae..ca6e74e6600 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/wherefore-art-thou.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/wherefore-art-thou.md @@ -112,12 +112,7 @@ assert.deepEqual( ```js function whatIsInAName(collection, source) { - const arr = []; - // Only change code below this line - - // Only change code above this line - return arr; } whatIsInAName([{ first: "Romeo", last: "Montague" }, { first: "Mercutio", last: null }, { first: "Tybalt", last: "Capulet" }], { last: "Capulet" });