1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/inventory-update/README.md
2020-12-09 12:42:12 +01:00

12 lines
501 B
Markdown

# inventory-update
Created by [@Divlo](https://github.com/Divlo) on 8 July 2020.
## Instructions
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 `array1`). If an item cannot be found, add the new item and quantity into the inventory array. The returned inventory array should be in alphabetical order by item.
## Examples
See the `input-output.json` file for examples of input/output.