Created
January 19, 2011 20:41
-
-
Save ajayjapan/786829 to your computer and use it in GitHub Desktop.
Input & Output
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
Input: { | |
"venues": [{ | |
"name": "Grand Central Terminal", | |
"type": "Trending Now" | |
}, | |
{ | |
"name": "New York Penn Station", | |
"type": "Trending Now" | |
}, | |
{ | |
"name": "LOOSEWORLD 2.0", | |
"type": "Nearby" | |
}, | |
{ | |
"name": "Acupuncture of Manhattan", | |
"type": "Nearby" | |
}] | |
} | |
Output: [{ | |
"type": "Nearby", | |
"venues": [{ | |
"type": "Nearby", | |
"name": "LOOSEWORLD 2.0" | |
}, | |
{ | |
"type": "Nearby", | |
"name": "Acupuncture of Manhattan" | |
}] | |
}, | |
{ | |
"type": "Trending Now", | |
"venues": [{ | |
"type": "Trending Now", | |
"name": "New York Penn Station" | |
}, | |
{ | |
"type": "Trending Now", | |
"name": "Grand Central Terminal" | |
}] | |
}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment