Skip to content

Instantly share code, notes, and snippets.

@ongspxm
Created March 18, 2020 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ongspxm/83556edad24fa484d4e20e070c05e8c7 to your computer and use it in GitHub Desktop.
Save ongspxm/83556edad24fa484d4e20e070c05e8c7 to your computer and use it in GitHub Desktop.
Boilerplate for cpp problems
#include <bits/stdc++.h>
#define let const auto
#define REP(var, i) for (int var = 0; var < i; ++var)
using namespace std;
using Int = int;
//using Int = long long;
using vi = vector<Int>;
using vvi = vector< vector<Int> >;
void solve() {
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
solve();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment