Skip to content

Instantly share code, notes, and snippets.

@ajjahn
Last active December 22, 2015 04:39
Show Gist options
  • Save ajjahn/6418985 to your computer and use it in GitHub Desktop.
Save ajjahn/6418985 to your computer and use it in GitHub Desktop.
Ruby Golf - Paper, Rock, Scissors81 bytes between method definition.
def play(n)
s=%w[Paper Rock Scissors].rotate rand 3
s[1]+%w[,Draw ,Lose ,Win][s.index(n)<=>1]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment