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/input-output.json
2020-07-08 17:17:03 +02:00

51 lines
1.5 KiB
JSON

[
{
"input": [
[
{ "quantity": 21, "item": "Bowling Ball" },
{ "quantity": 2, "item": "Dirty Sock" },
{ "quantity": 1, "item": "Hair Pin" },
{ "quantity": 5, "item": "Microphone" }
],
[
{ "quantity": 2, "item": "Hair Pin" },
{ "quantity": 3, "item": "Half-Eaten Apple" },
{ "quantity": 67, "item": "Bowling Ball" },
{ "quantity": 7, "item": "Toothpaste" }
]
],
"output": [
{ "quantity": 88, "item": "Bowling Ball" },
{ "quantity": 2, "item": "Dirty Sock" },
{ "quantity": 3, "item": "Hair Pin" },
{ "quantity": 3, "item": "Half-Eaten Apple" },
{ "quantity": 5, "item": "Microphone" },
{ "quantity": 7, "item": "Toothpaste" }
]
},
{
"input": [
[
{ "quantity": 0, "item": "Bowling Ball" },
{ "quantity": 0, "item": "Dirty Sock" },
{ "quantity": 0, "item": "Hair Pin" },
{ "quantity": 0, "item": "Microphone" }
],
[
{ "quantity": 1, "item": "Hair Pin" },
{ "quantity": 1, "item": "Half-Eaten Apple" },
{ "quantity": 1, "item": "Bowling Ball" },
{ "quantity": 1, "item": "Toothpaste" }
]
],
"output": [
{ "quantity": 1, "item": "Bowling Ball" },
{ "quantity": 0, "item": "Dirty Sock" },
{ "quantity": 1, "item": "Hair Pin" },
{ "quantity": 1, "item": "Half-Eaten Apple" },
{ "quantity": 0, "item": "Microphone" },
{ "quantity": 1, "item": "Toothpaste" }
]
}
]