rps_winner(p1, p2) where p1 and p2 are each "rock", "paper", or "scissors". Return "Player 1" or "Player 2" for the winner, or "Draw" if they match. Standard rules: rock beats scissors, scissors beats paper, paper beats rock.rps_winner("rock", "scissors")"Player 1"
Rock beats scissors.
rps_winner("paper", "paper")"Draw"
Identical moves draw.
rps_winner("scissors", "rock")"Player 2"
Rock beats scissors, so player 2 wins.
Check the draw case first as a guard clause.
List the three winning combinations for Player 1 explicitly.