Last active
December 28, 2020 10:07
-
-
Save thorstel/5da94ca8b693a84a16ead9d316a30365 to your computer and use it in GitHub Desktop.
C++ Template for Programming Challenges
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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