the simulation in question:
for (int i = 0; i < 80000; i++) {
if (rand() % 2 == 0) {
printf("Kamala wins\n");
}
else {
printf("Trump wins\n");
}
}
Seems lots of unnecessary mods tbh,
S=0
for i in 1:80000
S+=rand()
end
ceil(S)
Gotta dump results in some accumulate tho, and if then logic might be eh (although with branch prediction it might be auto 2 threads actually or similar utilization at least)
won in 42,069
big “i do numbers” energy
I ran 80,000 simulations of me taking a poop
In 40,000 of them, shit ran down my ballsack and then I had shit on my balls.