Skip to content

Instantly share code, notes, and snippets.

View outfrost's full-sized avatar

outfrost

View GitHub Profile
#include <algorithm>
#include <unordered_set>
#include <random>
#include <iostream>
struct Point final {
const int x;
const int y;
Point() : x(0), y(0) {}