Created
March 22, 2012 02:47
-
-
Save ywindish/2155296 to your computer and use it in GitHub Desktop.
Random numbers list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://codepad.org/utbefxEC | |
use List::Util qw(shuffle); | |
print join ',', shuffle(1..40); | |
#-> 31,4,39,27,40,5,2,14,9,29,8,37,20,17,30,24,15,33,36,10,18,32,28,11,6,21,12,25,35,34,19,7,26,1,38,23,3,13,22,16 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment