tkellehe / noodel

A programming language designed around supporting ASCII animation based code golfing challenges.
10 stars 0 forks source link

Score rock-paper-scissors #79

Open tkellehe opened 7 years ago

tkellehe commented 7 years ago

http://codegolf.stackexchange.com/questions/106496/score-rock-paper-scissors

21 bytes

1220200Ḷ2ėạȥḃ1€Ė⁻ạɲ⁻1

My answer

Try it:)

tkellehe commented 7 years ago

21 bytes

Another way to do the same thing with the same number of bytes, but slightly different.

Ḷ2ạḃ1ȥĖ€1002022Ċ⁻ạɲ⁻1
Ḷ2ạḃ1ȥĖ€              # 
Ḷ2                    # 
  ạ                   # 
   ḃ1                 # 
     ȥ                # 
      Ė               # 
       €              # 

Try it:)