Random Number List (No Repeats)
Create a list of unique random integers in a chosen range. Each integer appears at most once in the result.
Tools and Utilities • Randomizers and Grouping
Create a list of unique random integers in a chosen range. Each integer appears at most once in the result.
It means the calculator returns multiple integers where each integer can appear at most once in the list. The list is sampled without replacement from the allowed integers in the interval.
The interval type determines whether min and max are included. For example, [min, max] allows both endpoints, while (min, max) excludes both endpoints so only integers strictly between them can be drawn.
This happens when the number you request is larger than the count of distinct integers available under the chosen interval rules. Increase the range, include endpoints, or request fewer integers.
Keeping random draw order shows the integers in the order they were selected. Sorting ascending rearranges the same selected integers from smallest to largest without changing which integers were drawn.