Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go

Idiom #15 Pick uniformly a random integer in [a..b]

Pick a random integer greater than or equals to a, inferior or equals to b. Precondition : a < b.

import "math/rand/v2"
func pick(a, b int) int {
	return a + rand.IntN(b-a+1)
}

Note that the package math/rand/v2 is not crypto-secure.
import "math/rand"
func pick(a,b int) int {
	return a + rand.Intn(b-a+1)
}

(b-a+1) is needed to have upper bound b included.
Note that the package math/rand is not crypto-secure.
with Ada.Numerics.Discrete_Random;
declare
   subtype Random_Range is Integer range A .. B;
   package Rand is
      new Ada.Numerics.Discrete_Random (Random_Range);
   use Rand;
   Gen    : Generator;
   Result : Random_Range;
begin
   Reset (Gen);
   Result := Random (Gen);
end;

Range includes both A and B

New implementation...
< >
programming-idioms.org