Skip to content

Instantly share code, notes, and snippets.

@arthurbrazil
Created October 6, 2021 03:32
Show Gist options
  • Save arthurbrazil/ea263509b3c96ef06806b89cd1e66ef2 to your computer and use it in GitHub Desktop.
Save arthurbrazil/ea263509b3c96ef06806b89cd1e66ef2 to your computer and use it in GitHub Desktop.
// 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