RandomSequence
RandomSequence copied to clipboard
A random number generator which outputs a unique 32-bit integer each time it's called.
Results
1
RandomSequence issues
Sort by
recently updated
recently updated
newest added
``` #include static const unsigned int prime = 19448089; unsigned int permuteQPR(unsigned int x) { if (x >= prime) return x; // The 5 integers out of range are mapped...