We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c849ad6 commit 9b21ef1Copy full SHA for 9b21ef1
content/contest/template.cpp
@@ -3,7 +3,7 @@ using namespace std;
3
4
#define rep(i, a, b) for(int i = a; i < (b); ++i)
5
#define trav(a, x) for(auto& a : x)
6
-#define all(x) x.begin(), x.end()
+#define all(x) begin(x), end(x)
7
#define sz(x) (int)(x).size()
8
typedef long long ll;
9
typedef pair<int, int> pii;
0 commit comments