Computer Science Canada Random integers |
Author: | Clayton [ Mon Feb 19, 2007 10:59 am ] |
Post subject: | Random integers |
How would you manage this? I've been playing around in irb, and found rand(max), but I'd like to be able to have a defined range of numbers to randomize... Is there a pre-defined random integers method that does this, or would I have to create my own and seed it with the time or some such this? |
Author: | Cervantes [ Mon Feb 19, 2007 2:14 pm ] | ||
Post subject: | RE:Random integers | ||
You mean something like Rand.Int in Turing, where you provide a lower bound and a higher bound? Sure:
|
Author: | Clayton [ Mon Feb 19, 2007 4:37 pm ] |
Post subject: | Re: Random integers |
hmm, I was thinking of something exactly like that, but I thought I had seen something wrong with it, and now that I think about it, I can't even remember what that was. Thanks Cervantes ![]() |
Author: | wtd [ Mon Feb 19, 2007 11:25 pm ] | ||
Post subject: | RE:Random integers | ||
|
Author: | Clayton [ Mon Feb 19, 2007 11:38 pm ] |
Post subject: | Re: Random integers |
Well, I've learned my bit of Ruby for the day. I had no idea there was a Range class. that's damn handy ![]() |