In Ruby, how do you generate a random number between 0 and n? In .NET you can create a Random object, does something like this exist for Ruby?
|
|
|
What is wrong with From Ruby Random Numbers:
As Marc-André Lafortune mentions in his answer below (go upvote it), Ruby 1.9.2 has its own For instance, in this game where you need to guess 10 numbers, you can initialize them with:
Note:
This is why the equivalent of |
|||||||||||||||||
|
|
You can use Ruby 1.9.2 also introduces the
The
In Ruby 1.9.3, you are able to call:
Available for all versions of Ruby by requiring my Notes on In most cases, the simplest is to use If you use The cases where
|
|||||||||||||||||||
|
|
Well, I figured it out. Apparently there is a builtin (?) function called rand:
If someone answers with a more detailed answer, I'll mark that as the correct answer. |
|||||||
|
|
If you're not only seeking for a number but also hex or uuid it's worth mentioning that the
It's documented here: Ruby 1.9.2 - Module: SecureRandom |
|||
|
|
|
Apparently srand is called when the ruby interpreter is started. Therefore unless you have a specific need to reset the seed - extra calls to srand are unnecessary. |
|||||
|
|
You can random number with
|
||||
|
|
|
Don't forget to seed the RNG with srand() first. |
|||
Note that the range option is only available in newer(1.9+ I believe) versions of ruby. |
|||
|