mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
12 lines
505 B
Markdown
12 lines
505 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.
|