What are you waiting for? Go ahead and generate 200000 random numbers from one to a billion in less than five seconds! No pick random blocks used!
Credit to wikipedia for the method used to generate these pseudorandom numbers. [https://en.wikipedia.org/wiki/Linear_congruential_generator] === Explanation: Pseudorandomness is not actually random, and is just generated by a repeated process to look random. In this project if you input the same numbers, you will get the same results all over and over again, because this is generated using the same method every time. For more info: [https://en.wikipedia.org/wiki/Pseudorandomness] These numbers are generated using a method called a Linear Congruential Generator. The math is as follows: X n+1 = (aX n + c) mod m It basically means the next number in the series of random numbers is equal to a times the seed plus c modulus m. Modulus is basically just taking the remainder of two numbers. M has to be greater than zero, while c has to be less than m but can be equal to zero and a can't be equal to zero but still has to be less than m. The seed can be equal to zero, and has to be less than m also. For a, c, and m, I just picked random numbers that meet these requirements. The seed you input. You can see a, c, and m inside the project. For more info, visit the wikipedia page. [https://en.wikipedia.org/wiki/Linear_congruential_generator] ===