Skip to content

Instantly share code, notes, and snippets.

@dimitriye98
Created March 4, 2018 18:32
Show Gist options
  • Save dimitriye98/cc4713b74fd083fbad9fbedd987c6c0d to your computer and use it in GitHub Desktop.
Save dimitriye98/cc4713b74fd083fbad9fbedd987c6c0d to your computer and use it in GitHub Desktop.
[
{
"name": "endpoint1",
"type": "dead end",
"connections": [
"road1"
]
},
{
"name": "endpoint2",
"type": "dead end",
"connections": [
"road2"
]
},
{
"name": "endpoint3",
"type": "dead end",
"connections": [
"road3"
]
},
{
"name": "intersection1",
"type": "dead end",
"connections": [
"road1",
"road2",
"road3"
]
}
]
[
{
"name": "endpoint1",
"type": "dead end",
"connections": [
{
"road": "road1",
"direction": "north"
}
]
},
{
"name": "endpoint2",
"type": "dead end",
"connections": [
{
"road": "road2",
"direction": "south"
}
]
},
{
"name": "endpoint3",
"type": "dead end",
"connections": [
{
"road": "road3",
"direction": "west"
}
]
},
{
"name": "intersection1",
"type": "dead end",
"connections": [
{
"road": "road1",
"direction": "south"
},
{
"road": "road2",
"direction": "north"
},
{
"road": "road3",
"direction": "east"
},
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment