Squashing three commits...

Made a minor adjustment in instruction to prevent confusion regards to variable use of item

Added more clarifications

Clarification Phase 2
This commit is contained in:
Dr. Paul Kenneth Shreeman
2015-12-30 16:49:41 -06:00
parent 8069e3b9e0
commit 78523fe71c

View File

@ -2098,7 +2098,7 @@
"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>queue</code> which takes an \"array\" and an \"item\" as arguments. Add the item onto the end of the array, then remove and return the item at the front of the queue." "Write a function <code>queue</code> which takes an \"array\" and an \"item\" as arguments. Add the item onto the end of the array, then remove and return the first element of the array."
], ],
"releasedOn": "January 1, 2016", "releasedOn": "January 1, 2016",
"head": [ "head": [