Skip to content

Instantly share code, notes, and snippets.

@thorstel
Last active December 28, 2020 10:07
Show Gist options
  • Select an option

  • Save thorstel/5da94ca8b693a84a16ead9d316a30365 to your computer and use it in GitHub Desktop.

Select an option

Save thorstel/5da94ca8b693a84a16ead9d316a30365 to your computer and use it in GitHub Desktop.
C++ Template for Programming Challenges
#include <bits/stdc++.h>
#define all(x) begin(x), end(x)
#define sz(x) ((int)(x).size())
using ll = long long;
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment