Skip to content

Instantly share code, notes, and snippets.

@vuorejo1
Created July 5, 2013 06:55
Show Gist options
  • Save vuorejo1/5932499 to your computer and use it in GitHub Desktop.
Save vuorejo1/5932499 to your computer and use it in GitHub Desktop.
# Implement a DiceSet Class here:
class DiceSet
def initialize
@noppaluvut = self.roll(5)
end
def roll(montako)
@noppaluvut = []
montako.times do
@noppaluvut << rand(1..6)
end
end
def values
return @noppaluvut
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment