Tagged Questions

79
votes
31answers
8k views
20
votes
12answers
4k views

How to request a random row in SQL?

What is the best way to request a random row in pure SQL?
17
votes
7answers
2k 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 …
16
votes
9answers
525 views

How to generate random ‘greenish’ colors

Anyone have any suggestions on how to make randomized colors that are all greenish? Right now I'm generating the colors by this: color = (randint(100, 200), randint(120, 255), randint(100, 200)) …
16
votes
13answers
4k 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 …
14
votes
12answers
466 views

How to generate a universe?

If I wanted to generate a universe/galaxy like that of Elite or Spore, what would be some good programming reference materials and algorithms to take into account?
13
votes
4answers
2k views

Random number generator not working the way I had planned (C#)

This is a very strange problem. Here is my code: //Function to get random number public static int RandomNumber(int min, int max) { Random random = new Random(); return …
13
votes
8answers
604 views

What is the difference between a randomly generated number and secure randomly generated number?

As the title says What is the difference between a randomly generated number and secure randomly generated number?
12
votes
16answers
2k views

Generate a series of random numbers that add up to N in c#

How do I generate 30 random numbers between 1-9, that all add up to 200 (or some arbitrary N), in C#? I'm trying to generate a string of digits that can add together to be N.
12
votes
12answers
1k views

How to unit test a pseudo random number generator?

Hi all, I have a pseudo random number generator (PRNG) class that I want to unit test. There are two approaches: write a test case that takes a large amount of samples and test whether they are …
11
votes
24answers
2k views

What is a good random number generator for a game?

What is a good random number generator to use for a game in C++? My considerations are: Lots of random numbers are needed, so speed is good. Players will always complain about random numbers, but …
11
votes
7answers
1k views

Random points inside a Polygon

I have a 4 side convex Polygon defined by 4 points in 2D, and I want to be able to generate random points inside it. If it really simplifies the problem, I can limit the polygon to a parallelogram, …
11
votes
13answers
4k views

Best way to randomize a string array in C#

I was just wondering what is the best way to randomize an array of strings in C#. My array contains about 500 strings and I'd like to create a new Array with the same strings but in a random order. …
10
votes
8answers
190 views

Generating sorted random ints without the sort?

Just been looking at a code golf question about generating a sorted list of 100 random integers. What popped into my head, however, was the idea that you could generate instead a list of positive …
10
votes
6answers
331 views

how does random() actually work?

Every language has a random() function or something similar to generate a pseudo-random number. I am wondering what happens underneath to generate these numbers? I am not programming anything that …

1 2 3 4 5 27 next
15 30 50 per page