Created
March 18, 2018 01:36
-
-
Save aaronkelton/1927e9d7bb50d32caf1964736ba1c9a8 to your computer and use it in GitHub Desktop.
Quick Solution to Bypass about_dice_project.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DiceSet | |
attr_reader :values | |
def initialize; end | |
def roll(i) | |
@values = [] | |
i.times do | |
@values << rand(5)+1 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment