Created
June 9, 2010 22:26
-
-
Save plainlystated/432281 to your computer and use it in GitHub Desktop.
This file contains 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
def morse s;o='';s.upcase.each_byte{|c|o+=c==32?' ':"c 1mn 1mx 5v 1 v5 65 uv b xy 5w xn m l 66 xx 1pg 3d 33 2 34 uw 3e 1mo 1my 1pf".split[c-65].to_i(36).to_s.gsub(/1/,'.').gsub(/2/,'-')};o;end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment