Make Inventory Update function name unique #7536
+10
−10
erictleung
commented
ltegman
and 1 other
commented on an outdated diff
...-end-development-certification/advanced-bonfires.json
@@ -168,11 +168,11 @@ | ||
"id": "a56138aff60341a09ed6c480", | ||
"title": "Inventory Update", | ||
"description": [ | ||
- "Compare and update inventory stored in a 2d array against a second 2d array of a fresh delivery. Update current inventory item quantity, and if an item cannot be found, add the new item and quantity into the inventory array in alphabetical order.", | ||
+ "Compare and update the inventory stored in a 2D array against a second 2D array of a fresh delivery. Update the current existing inventory item quantities (in <code>arr1</code>). If an item cannot be found, add the new item and quantity into the inventory array. The returned inventory array should in alphabetical order by item.", |
The sentence at the end should be 'The returned inventory array should be in alphabetical order by item.'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
1 check passed
Details
continuous-integration/travis-ci/pr
The Travis CI build passed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tested locally. Passed
npm run test-challenges
. References #7085.inventory
function name toupdateInventory
in seeded code, solution, and tests