From 1880ccb6d85c6eb79e724593457877bab431951c Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Sat, 16 Nov 2024 21:17:29 +0100 Subject: get rid of all() and sz() --- content/math/polynomial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/math/polynomial.cpp') diff --git a/content/math/polynomial.cpp b/content/math/polynomial.cpp index 4698a00..12a4fd7 100644 --- a/content/math/polynomial.cpp +++ b/content/math/polynomial.cpp @@ -4,7 +4,7 @@ struct poly { poly(int deg = 0) : data(1 + deg) {} poly(initializer_list _data) : data(_data) {} - int size() const { return sz(data); } + int size() const { return ssize(data); } void trim() { for (ll& x : data) x = (x % mod + mod) % mod; -- cgit v1.2.3