Skip to content

Instantly share code, notes, and snippets.

View genezys's full-sized avatar

Vincent Robert genezys

View GitHub Profile
@genezys
genezys / gist:1243427
Last active September 27, 2015 08:48
Monty Hall simulation
class Array
def random_value
self[rand(size)]
end
end
class MonthyHall
def initialize
@doors = [:goat, :goat, :goat]
@doors[rand(3)] = :car