Skip to content

Instantly share code, notes, and snippets.

View kevin51jiang's full-sized avatar
👌
gottem

Kevin Jiang kevin51jiang

👌
gottem
View GitHub Profile
@kevin51jiang
kevin51jiang / template.cpp
Last active January 1, 2019 16:20 — forked from sananth12/template.cpp
Competitive programming template (C++)
#include <iostream>
#include <cmath>
#include <algorithm>
#include <limits>
#include <vector>
#include <bitset>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <time.h>