Skip to content

Instantly share code, notes, and snippets.

Created November 22, 2011 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1384895 to your computer and use it in GitHub Desktop.
Save anonymous/1384895 to your computer and use it in GitHub Desktop.
Ruby golf: Rock, Paper, Scissors
def play(g)
r,p,s=%w(rock paper scissors);a={r=>p,p=>s,s=>r};m=a.keys[rand(a.size)];m+','+(g==m ?"draw":(a[m]==g ?"win":"lose"))
end
# 116 chars inside
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment