From 1a1002fc0fa687536b634f2abfa080c6b1f9affe Mon Sep 17 00:00:00 2001 From: Milo Hartsoe Date: Fri, 14 Jul 2017 23:50:54 -0400 Subject: [PATCH] Rename length() as size() because the solution and future challenges use size() --- .../coding-interview-data-structure-questions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/08-coding-interview-questions-and-take-home-assignments/coding-interview-data-structure-questions.json b/challenges/08-coding-interview-questions-and-take-home-assignments/coding-interview-data-structure-questions.json index 37382134ec..899ebfd88b 100644 --- a/challenges/08-coding-interview-questions-and-take-home-assignments/coding-interview-data-structure-questions.json +++ b/challenges/08-coding-interview-questions-and-take-home-assignments/coding-interview-data-structure-questions.json @@ -1056,7 +1056,7 @@ " this.next = null; ", " }; ", "", - " this.length = function(){", + " this.size = function(){", " return length;", " };", "",