#include "misc/Random.h" #include #include namespace td { namespace utils { void initRandomizer(){ srand(time(0)); } std::uint64_t getRandomNumber(std::size_t max){ return rand() % max; } } // namespace utils } // namespace td