This tag is for questions pertaining to random numbers, whether pseudo random or truly random.
663
votes
9answers
89k views
Why does this code print “hello world”?
I came across this piece of code, and found it rather interesting. The following print statement would print "hello world". Could anyone explain this?
System.out.println(randomString(-229985452) + " ...
617
votes
26answers
83k views
Understanding “randomness”
I can't get my head around this, which is more random?
rand()
OR
rand() * rand()
I´m finding it a real brain teaser, could you help me out?
EDIT:
Intuitively I know that the mathematical ...
413
votes
22answers
494k views
Generating random number in a range with Java
I am trying to generate a random number with Java, but random in a specific range. For example, my range is 5-10, meaning that 5 is the smallest possible value the random number can take, and 10 is ...
364
votes
52answers
59k views
Expand a random range from 1–5 to 1–7
Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7.
What is a simple solution?
What is an effective solution ...
313
votes
7answers
192k views
Generating Random Numbers in Objective-C
I'm a java head mainly, and I want a way to generate a pseudo-random number between 0 and 74. In java I would use the method:
Random.nextInt(74)
I'm not interested in a discussion about seeds or ...
276
votes
28answers
236k views
How to generate a random alpha-numeric string
I've been looking for a simple java algorithm to generate a pseudo-random alpha-numeric string. In my situation it would be used as a unique session/key identifier that would "likely" be unique over ...
246
votes
9answers
149k views
How to get a random number in Ruby?
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?
225
votes
4answers
65k views
How do I randomly select an item from a list using Python?
Let's say, as an example, I have the following list:
foo = ['a', 'b', 'c', 'd', 'e']
What is the best way to retrieve an item at random from this list?
218
votes
35answers
80k views
How best to generate a random string in Ruby
I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z]
value = ""; 8.times{value << (65 + rand(25)).chr}
but it looks junky, and since it isn't a ...
185
votes
7answers
68k views
python random string generation with upper case letters and digits
I want to generate a string of size N.
It should be made up of numbers and uppercase English letters such as:
6U1S75
4Z4UKK
U911K4
How can I achieve this in a Pythonic way?
149
votes
7answers
69k views
Generating random numbers in Javascript in a specific range?
How can I generate a random whole number between two specified variables in Javascript, e.g. x = 4 and y = 8 would output any of 4, 5, 6, 7, 8?
129
votes
37answers
9k views
Need for predictable random generator
I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The ...
128
votes
13answers
8k views
Is this a “good enough” random algorithm; why isn't it used if it's faster?
I made a class called QuickRandom, and its job is to produce random numbers quickly. It's really simple: just take the old value, multiply by a double, and take the decimal part.
Here is my ...
121
votes
7answers
26k views
Random number generator only generating one random number
I have the following function:
//Function to get random number
public static int RandomNumber(int min, int max)
{
Random random = new Random();
return random.Next(min, max);
}
How I call ...
115
votes
2answers
32k views
How do I pick randomly from an array?
I want to know if there is a much cleaner way of doing this. Basically, I want to pick a random element from an array of variable length. Normally, I would do it like this:
myArray = ["stuff", ...
110
votes
19answers
66k views
107
votes
21answers
102k views
c# random string generator
I've developed a random string generator but it's not behaving quite as I'm hoping. My goal is to be able to run this twice and generate two distinct four character random strings. However, it just ...
94
votes
5answers
4k views
Why do people say there is modulo bias when using a random number generator?
I have seen this question asked a lot but never seen a true concrete answer to it. So I am going to post one here which will hopefully help people understand why exactly there is "modulo bias" when ...
78
votes
13answers
49k views
Generate a string of 5 random characters in Javascript
I want a 5 character string composed of characters picked randomly from the set [a-zA-Z0-9].
What's the best way to do this with Javascript?
76
votes
9answers
22k views
Is it correct to use JavaScript Array.sort() method for shuffling?
I was helping somebody out with his JavaScript code and my eyes were caught by a section that looked like that:
function randOrd(){
return (Math.round(Math.random())-0.5);
}
coords.sort(randOrd);
...
74
votes
9answers
56k views
Select n random rows from SQL Server table
I've got a SQL Server table with about 50,000 rows in it. I want to select about 5,000 of those rows at random. I've thought of a complicated way, creating a temp table with a "random number" column, ...
64
votes
7answers
67k views
C++ random float
How do I generate random floats in C++?
I thought I could take the integer rand and divide it by something, would that be adequate enough?
63
votes
5answers
34k views
Random strings in Python 2.6 (Is this OK?)
I've been trying to find a more pythonic way of generating random string in python that can scale as well. Typically, I see something similar to
''.join(random.choice(string.letters) for i in ...
62
votes
5answers
49k views
Generate random value between two numbers in Javascript
Is there a way to generate a random number in range from 1 to 6 (1,2,3,4,5,6) in JS?
How to do this?
62
votes
3answers
3k views
Data structure for loaded dice?
Suppose that I have an n-sided loaded die where each side k has some probability pk of coming up when I roll it. I'm curious if there is good algorithm for storing this information statically (i.e. ...
58
votes
12answers
13k views
Unique random numbers in O(1)?
The problem is this: I'd like to generate unique random numbers between 0 and 1000 that never repeat (I.E. 6 doesn't come out twice), but that doesn't resort to something like an O(N) search of ...
58
votes
1answer
18k views
Javascript Random Seeds
Is it possible to seed the random number generator (Math.rand) in Javascript ?
57
votes
6answers
2k views
How many double numbers are there between 0.0 and 1.0?
This is something that's been on my mind for years, but I never took the time to ask before.
Many (pseudo) random number generators generate a random number between 0.0 and 1.0. Mathematically there ...
53
votes
23answers
3k views
Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?
The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.
This was the only suggestion ...
53
votes
5answers
56k views
51
votes
5answers
46k views
Shuffling a list of objects in python
I have a list of objects in python and I want to shuffle them. I thought I could use the random.shuffle method, but this seems to fail when the list is of objects. Is there a method for shuffling ...
50
votes
17answers
55k views
PHP random string generator
I'm trying to create a randomized string in PHP, and I get absolutely no output with this:
<?php
Function RandomString()
{
$characters = ...
50
votes
6answers
4k views
Difference between java.util.Random and java.security.SecureRandom
My team got handed over some server side code (in Java) that generates random tokens and I have a question regarding the same -
The purpose of these tokens is fairly sensitive - used for session id, ...
49
votes
16answers
42k views
Select a random N elements from List<T> in C#
I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List.
49
votes
4answers
13k views
Python ImportError cannot import urandom Since Ubuntu 12.04 upgrade
Upgraded Ubuntu to Precise Pangolin (12.04), and Python's Random is now broken... I suspect other things might be broken too. How do I fix Python?
File "/usr/lib/python2.7/random.py", line 47, in ...
49
votes
9answers
10k views
Generate a random point within a circle (uniformly)
I need to generate a uniformly random point within a circle of radius R.
I realize that by just picking a uniformly random angle in the interval [0 ... 2π), and uniformly random radius in the ...
47
votes
8answers
1k views
What distribution do you get from this broken random shuffle?
The famous Fisher-Yates shuffle algorithm can be used to randomly permute an array A of length N:
For k = 1 to N
Pick a random integer j from k to N
Swap A[k] and A[j]
A common mistake that ...
46
votes
7answers
37k views
MySQL select 10 random rows from 600K rows fast
How can I best write a query that selects 10 rows randomly from a total of 600k?
45
votes
20answers
4k views
What is the most secure seed for random number generation?
What are the most secure sources of entropy to seed a random number generator? This question is language and platform independent and applies to any machine on a network. Ideally I'm looking for ...
44
votes
6answers
17k views
How can I shuffle the lines of a text file in Unix command line?
I want to shuffle the lines of a text file randomly and create a new file. The file may have several thousands of lines.
How can I do that with cat, awk, cut, etc.?
44
votes
22answers
52k views
Picking a random element from a set
How do I pick a random element from a set?
I'm particularly interested in picking a random element from a
HashSet or a LinkedHashSet, in Java.
Solutions for other languages are also welcome.
41
votes
6answers
16k views
Generate a random alphanumeric string in cocoa
I know this can't be that hard. I've searched, but I can't seem to find a simple solution. I want to call a method, pass it the length and have it generate a random alphanumeric string.
Any ideas? ...
41
votes
4answers
18k views
Random date in C#
I'm looking for some succinct, modern C# code to generate a random date between Jan 1 1995 and the current date.
I'm thinking some solution that utilizes Enumerable.Range somehow may make this more ...
40
votes
6answers
24k views
How can i optimize MySQL's ORDER BY RAND() function?
I'd like to optimize my queries so i look into mysql-slow.log.
Most of my slow queries contains ORDER BY RAND(). I cannot find a real solution to resolve this problem. Theres is a possible solution ...
39
votes
8answers
17k views
How random is JavaScript's Math.random?
For 6 years I've had a random number generator page on my website. For a long time, it was the first or second result on Google for "random number generator" and has been used to decide dozens, if not ...
39
votes
3answers
5k views
Collisions when generating UUIDs in JavaScript?
This relates to this question. I am using this answer to generate UUID in JavaScript:
'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random()*16|0, v = c == ...
38
votes
6answers
16k views
Random record in ActiveRecord
I'm in need of getting a random record from a table via ActiveRecord. I've followed the example from Jamis Buck from 2006.
However, I've also come across another way via a Google search (can't ...
36
votes
7answers
15k views
Rails 3: Get Random Record
So, I've found several examples for finding a random record in Rails 2 -- the preferred method seems to be:
Thing.find :first, :offset => rand(Thing.count)
Being something of a newbie I'm not ...
36
votes
7answers
29k views
How to create my own JavaScript Random Number generator that I can also set the seed
The JavaScript Math.random() function returns a random value between 0 and 1 (automatically seeded based on the current time (similar to Java I believe)). However I'd like to make a more robust ...
35
votes
10answers
28k views
Get random item from array with jQuery
var items = Array(523,3452,334,31,...5346);
Each item of this array is some number.
How do I get random item from var items?
This question is similar to Get random item from array, but for jQuery.
...
