Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
#include <vector>
#include <random>
#include <chrono>
template <typename T>
static void init(std::vector<T>& v)
{
std::mt19937 mt(0);
for(auto& it : v) {