Ogólne: Random numbers in C++

Publiczne ogłoszenie

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.