Created
June 10, 2014 21:34
-
-
Save mauro3/8745144b120763fbf225 to your computer and use it in GitHub Desktop.
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
n = 200 | |
reps = 10^4 | |
orderedinds = [1:n] | |
disorderedinds = orderedinds[randperm(n)] | |
function frows() | |
acc = 0 | |
inds = disorderedinds | |
for i in rand(1:n, reps) | |
acc += sortperm(inds)[1] | |
end | |
acc | |
end | |
a = frows() | |
@time frows() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment