Skip to content

Commit

Permalink
SIZE SHOULD NOT BE LINEAR IN N
Browse files Browse the repository at this point in the history
  • Loading branch information
helgikrs committed Nov 3, 2013
1 parent 5dfd2a4 commit a72e4ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/header.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ typedef vector<ii> vii;
typedef vector<vi> vvi;
typedef vector<vii> vvii;
template <class T> T mod(T a, T b) { return (a % b + b) % b; }
template <class T> int size(T x) { return x.size(); }
template <class T> int size(T &x) { return x.size(); }

0 comments on commit a72e4ec

Please sign in to comment.