From f0ce3e1c9820571b7cf346c4a93be7eef33ce6ea Mon Sep 17 00:00:00 2001 From: Julien Dephix Date: Mon, 20 Mar 2017 09:37:35 +0100 Subject: [PATCH] update description for PrioriyQueue challenge changed "We've starting writing" to "We've started writing" --- .../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 97f3c60f58..69da5713ff 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 @@ -161,7 +161,7 @@ "[[’kitten’, 2], [‘dog’, 2], [‘rabbit’, 2]]", "Here the second value (an integer) represents item priority. If we enqueue [‘human’, 1] with a priority of 1 (assuming lower priorities are given precedence) it would then be the first item to be dequeued. The collection would like this:", "[[‘human’, 1], [’kitten’, 2], [‘dog’, 2], [‘rabbit’, 2]].", - "We’ve starting writing a PriorityQueue in the code editor. You will need to add an enqueue method for adding items with a priority, a dequeue method for removing items, a size method to return the number of items in the queue, and finally an isEmpty method that will return true or false if the queue is empty.", + "We’ve started writing a PriorityQueue in the code editor. You will need to add an enqueue method for adding items with a priority, a dequeue method for removing items, a size method to return the number of items in the queue, and finally an isEmpty method that will return true if the queue is empty or false if it is not.", "The enqueue should accept items with the format shown above (['human', 1]) where 1 represents the priority. The dequeue should return only the current item, not its priority." ], "challengeSeed": [