Skip to content

Instantly share code, notes, and snippets.

@ajayjapan
Created January 19, 2011 20:41
Show Gist options
  • Save ajayjapan/786829 to your computer and use it in GitHub Desktop.
Save ajayjapan/786829 to your computer and use it in GitHub Desktop.
Input & Output
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