Skip to content

Instantly share code, notes, and snippets.

@deepakraous
Last active July 17, 2018 20:40
Show Gist options
  • Save deepakraous/39bb0202a91d077ada79d36f128df4ae to your computer and use it in GitHub Desktop.
Save deepakraous/39bb0202a91d077ada79d36f128df4ae to your computer and use it in GitHub Desktop.
Basic Trie
[
  %{0     => ["/", {0},{-1} ]},
  %{4995  => ["a", {0},{nil} ]},
  %{62251 => ["b", {4995},{nil}  ]},
  %{88021 => ["b", {62251}.{nil} ] },
  %{62434 => ["a", {88021},{nil} ]},
  %{57879 => [nil, {62434},{1}]},
  %{97678 => ["s", {62251},{nil} ]},
  %{55556 => [nil, {97678},{2} ]}
  
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment