Stare/Watch. Every time it finishes sorting, it shuffles again after 3 seconds. Press space to change the delay during the sorting process. Shift + Green Flag for turbo mode. follow plz
~~~~~~~~~~~~~~~~~NOTES~~~~~~~~~~~~~~~~~~ NOT 100% pen! This shuffles the numbers from 1~70, so there are 70! possible arrangements of the numbers. 70! is 11978571669969891796072783721689098736458 938142546425857555362864628009582789845319680000000000000000, which is quite a lot of arrangements! Selection Sort repeatedly finds the smallest element in the unsorted part of the list, and puts the element in its correct spot, or it repeatedly finds the biggest element in the unsorted part of the list, and puts that element in its correct spot. (70! stands for 70 factorial, and it is equal to 70 * 69 * 68 * 67 * ... * 3 * 2 * 1) ~~~~~~~~~~~~~~~~~CREDITS~~~~~~~~~~~~~~~~~~ TurboWarp for the for each () in range () block. It really helps simplify code! All code by me, the concept is not by me.