Skip to content

Instantly share code, notes, and snippets.

@jish
Created June 16, 2013 22:55
Show Gist options
  • Select an option

  • Save jish/5793764 to your computer and use it in GitHub Desktop.

Select an option

Save jish/5793764 to your computer and use it in GitHub Desktop.
percent
# Q: How do I make something happen 25% of the time
# A: rand(4) == 0
# How?
results = Hash.new(0)
10_000.times do
results[rand(4)] += 1
end
puts results.inspect # => {3=>2482, 1=>2507, 2=>2506, 0=>2505}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment