Skip to content
Permalink
3b99e145f5
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (25 sloc) 650 Bytes
package utils;
import java.util.HashSet;
import java.util.Random;
import java.util.Set;
public class MathUtils {
private static Random random = new Random();
/**
*
* @param startidx
* @param endidxIncl
* @param k how many random numbers.
* @return set of unique random numbers (in a set because, anyways,
* the order doesn't matter and the func. is non-deterministic)
*/
public static Set<Integer> randUniq(int startidx, int endidxIncl, int k) {
Set<Integer> r = new HashSet<>();
while(r.size()!=k) {
int i = random.nextInt(endidxIncl + 1);
if(i>=startidx && i<=endidxIncl) {
r.add(i);
}
}
return r;
}
}