illustrative abstractions

0%

hello world

welcome to my new blog.

for old material, please visit an alternative site.

title

below is a test on code snippets.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include<bits/stdc++.h>
#pramga GCC optimize ("Ofast")

using namespace std;

static int fast_io = [] () {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
return 0;
} ();

int main () {
return 0;
}