Rock Paper Scissors Pattern Matching
Mix.install([
{:kino, github: "livebook-dev/kino", override: true},
{:kino_lab, "~> 0.1.0-dev", github: "jonatanklosko/kino_lab"},
{:vega_lite, "~> 0.1.4"},
{:kino_vega_lite, "~> 0.1.1"},
{:benchee, "~> 0.1"},
{:ecto, "~> 3.7"},
{:math, "~> 0.7.0"},
{:faker, "~> 0.17.0"},
{:utils, path: "#{__DIR__}/../utils"},
{:tested_cell, git: "https://github.com/BrooklinJazz/tested_cell"}
])
Navigation
Create Rock Paper Scissors Using Pattern Matching
You’re going to recreate your rock paper scissors game using pattern matching.
In the Elixir cell below,
-
Create a module
RockPaperScissors
-
Create a
play/2
function that expects:rock
,:paper
, or:scissors
for each parameter. -
play/2
should return"#{guess} beats #{guess}!"
or"draw!"
depending on the outcome.
RockPaperScissors.play(:rock, :paper)
":paper beats :rock!"
RockPaperScissors.play(:rock, :rock)
"draw!"
defmodule RockPaperScissors do
def play(guess1, guess2) do
end
end
Utils.feedback(:rock_paper_scissors_pattern_matching, RockPaperScissors)
Commit Your Progress
Run the following in your command line from the project folder to track and save your progress in a Git commit.
$ git add .
$ git commit -m "finish rps pattern matching exercise"