Enter in the range of given data set, and it creates a random data set with 100k individual numbers in List 1. Then, it checks for repeats, and adds all unique numbers inside of the REp List. Ok, this is just a list test for my upcoming project. What it does is, it asks you for a range (x). It creates 100k random numbers between (-x) ~ (x) and puts them in List 1. Then, we filter through list one to find all unique numbers and add them to REp. Finally, the repeats variable show how many repeated numbers were found in List 1.
Honestly, I just wrote this cause I needed a method to compare and find repeats in a list. Variables : Repeats : Repeated numbers. Progress : Since we are computing 100k numbers, the progress variable shows how close the script is to finish computing the variables. startingListLength : Shows how many numbers we create inside List 1. 100k by default, but you can change it by editing the script inside. Variability : The range of numbers that the computer chooses from to add to List 1. An input of (x) will output a range of -x ~ x, essentially doubling the amount of possible numbers.