Last active
May 8, 2020 16:44
-
-
Save AndyNovo/0f2970132c6d38bc743912020783b92f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"root":{ | |
"color":"green", | |
"next": ["node1","node2","node3"] | |
}, | |
"node1":{ | |
"color":"red", | |
"next":[] | |
}, | |
"node2":{ | |
"color":"green", | |
"next":["node4"] | |
}, | |
"node3":{ | |
"color":"red", | |
"next":[] | |
}, | |
"node4":{ | |
"color":"red", | |
"next":[] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment