Skip to content

Instantly share code, notes, and snippets.

View avidLearnerInProgress's full-sized avatar
🎯
Focusing

Chirag Shah avidLearnerInProgress

🎯
Focusing
View GitHub Profile
@avidLearnerInProgress
avidLearnerInProgress / template.cpp
Created June 1, 2019 13:14
Competitive programming C++ template
#include <bits/stdc++.h> // Include every standard library
using namespace std;
typedef long long LL;
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
typedef pair<string, string> pss;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<pii> vii;