Created
May 30, 2018 05:03
-
-
Save sillypog/4d6c14a1d6978ef979f8a95cf97f0564 to your computer and use it in GitHub Desktop.
Tree representation of profanity list
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
%{ | |
"a" => %{"r" => %{"s" => %{"e" => %{"n" => %{"i" => %{"c" => :leaf}}}}}}, | |
"b" => %{ | |
"l" => %{"o" => %{"o" => %{"m" => %{"e" => %{"r" => %{"s" => :leaf}}}}}}, | |
"o" => %{ | |
"s" => %{"o" => %{"m" => :leaf}}, | |
"u" => %{"n" => %{"d" => %{"e" => %{"r" => :leaf}}}} | |
} | |
}, | |
"f" => %{"u" => %{"s" => %{"t" => %{"i" => %{"l" => %{"u" => %{"g" => %{"s" => :leaf}}}}}}}}, | |
"s" => %{"u" => %{"f" => %{"f" => %{"r" => %{"a" => %{"g" => %{"e" => :leaf}}}}}}}, | |
"z" => %{"o" => %{"u" => %{"n" => %{"d" => %{"e" => %{"r" => %{"k" => %{"i" => %{"t" => %{"e" => :leaf}}}}}}}}}} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment