Created
October 6, 2021 03:30
-
-
Save arthurbrazil/92aaf6f23d928a2a6ee29069222eb5e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// References | |
[ | |
{ | |
"id": "0001", | |
"qty": 0, | |
}, | |
{ | |
"id": "0002", | |
"qty": 0, | |
} | |
] | |
// Transactions | |
[ | |
{ | |
"id": "0001", | |
"qty": 42, | |
"otherstuff": "blah blah" | |
}, | |
{ | |
"id": "0001", | |
"qty": 8, | |
}, | |
{ | |
"id": "0002", | |
"qty": 20, | |
"otherstuff": "ignore me" | |
}, | |
] | |
// Expected Outputs | |
[ | |
{ | |
"id": "0001", | |
"qty": 50, | |
}, | |
{ | |
"id": "0002", | |
"qty": 20, | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment