Update instructions for Stand in Line Challenge
This commit is contained in:
@ -2744,7 +2744,9 @@
|
|||||||
"title": "Stand in Line",
|
"title": "Stand in Line",
|
||||||
"description": [
|
"description": [
|
||||||
"In Computer Science a <dfn>queue</dfn> is an abstract <dfn>Data Structure</dfn> where items are kept in order. New items can be added at the back of the <code>queue</code> and old items are taken off from the front of the <code>queue</code>.",
|
"In Computer Science a <dfn>queue</dfn> is an abstract <dfn>Data Structure</dfn> where items are kept in order. New items can be added at the back of the <code>queue</code> and old items are taken off from the front of the <code>queue</code>.",
|
||||||
"Write a function <code>nextInLine</code> which takes an array (<code>arr</code>) and a number (<code>item</code>) as arguments. Add the number to the end of the array, then remove the first element of array. The <code>nextInLine</code> function should then return the element that was removed."
|
"Write a function <code>nextInLine</code> which takes an array (<code>arr</code>) and a number (<code>item</code>) as arguments.",
|
||||||
|
"Add the number to the end of the array, then remove the first element of the array.",
|
||||||
|
"The <code>nextInLine</code> function should then return the element that was removed."
|
||||||
],
|
],
|
||||||
"releasedOn": "January 1, 2016",
|
"releasedOn": "January 1, 2016",
|
||||||
"head": [
|
"head": [
|
||||||
|
Reference in New Issue
Block a user