Last active
February 14, 2020 06:25
-
-
Save tagomoris/f4ed069cfa9db9dab4c5625c5bbc3325 to your computer and use it in GitHub Desktop.
This file contains 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
[ | |
{"name": "Amina Frost", "country": "US", "city": "Hammond", "amount": 30}, | |
{"name": "Mehak Flowers", "country": "US", "city": "Kansas City", "amount": 41}, | |
{"name": "Angharad Davie", "country": "AU", "city": "Queenstown", "amount": 31}, | |
{"name": "Hannah Robins", "country": "UK", "city": "Langport", "amount": 1}, | |
{"name": "Romilly Lowe", "country": "US", "city": "Kansas City", "amount": 10}, | |
{"name": "Komal Donaldson", "country": "UK", "city": "Langport", "amount": 19}, | |
{"name": "Florence Andrew", "country": "US", "city": "Kansas City", "amount": 7} | |
] |
This file contains 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
{ | |
"US": [ | |
{"name": "Amina Frost", "country": "US", "city": "Hammond", "amount": 30}, | |
{"name": "Mehak Flowers", "country": "US", "city": "Kansas City", "amount": 41}, | |
{"name": "Romilly Lowe", "country": "US", "city": "Kansas City", "amount": 10}, | |
{"name": "Florence Andrew", "country": "US", "city": "Kansas City", "amount": 7} | |
], | |
"UK": [ | |
{"name": "Hannah Robins", "country": "UK", "city": "Langport", "amount": 1}, | |
{"name": "Komal Donaldson", "country": "UK", "city": "Langport", "amount": 19} | |
], | |
"AU": [ | |
{"name": "Angharad Davie", "country": "AU", "city": "Queenstown", "amount": 31} | |
] | |
} |
This file contains 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
{ | |
"US": { | |
"Hammond": 30, | |
"Kansas City": 58, | |
"all": 88 | |
}, | |
"UK": { | |
"Langport": 20, | |
"all": 20 | |
}, | |
"AU": { | |
"Queenstown": 31, | |
"all": 31 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment