Skip to content

Commit 9b21ef1

Browse files
Chilleesimonlindholm
authored andcommitted
Change x.begin() to begin(x) (#96)
1 parent c849ad6 commit 9b21ef1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/contest/template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using namespace std;
33

44
#define rep(i, a, b) for(int i = a; i < (b); ++i)
55
#define trav(a, x) for(auto& a : x)
6-
#define all(x) x.begin(), x.end()
6+
#define all(x) begin(x), end(x)
77
#define sz(x) (int)(x).size()
88
typedef long long ll;
99
typedef pair<int, int> pii;

0 commit comments

Comments
 (0)