Skip to content

Instantly share code, notes, and snippets.

@Jauny
Created September 6, 2012 19:44
Show Gist options
  • Save Jauny/3659847 to your computer and use it in GitHub Desktop.
Save Jauny/3659847 to your computer and use it in GitHub Desktop.
nodes = { a:[], b:[], c:[], d:[] }
nodes[:a] << nodes[:a]
nodes[:a] << nodes[:b]
nodes[:b] << nodes[:a]
nodes[:b] << nodes[:c]
p nodes
#=> {:a=>[[[...], []], [...]], :b=>[[[...], [...]], []], :c=>[], :d=>[]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment