Ogólne:
Random numbers in C++
Publiczne ogłoszenie
Szymon Acedański |
2015-04-30 10:49:35
Please do not use std::random_device, because it opens a file (/dev/urandom), which is forbidden by rules.
rand() and std::random_shuffle are OK.
> Please do not use std::random_device, because it opens a file (/dev/urandom), which is forbidden by rules.
>
> rand() and std::random_shuffle are OK.