Skip to content

Instantly share code, notes, and snippets.

@xchoi
Last active August 30, 2016 20:47
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save xchoi/1516166 to your computer and use it in GitHub Desktop.
Save xchoi/1516166 to your computer and use it in GitHub Desktop.
Asian name generator
%w(a e i o u).map {|x|
['', 'a', 'e', 'i', 'o', 'u'].map {|y|
['', 'n', 'ng'].map {|z|
if (x!=y)
%w(l ch).map {|a|
a + x + y + z
}
else
nil
end
}
}
}.flatten.uniq.compact.sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment