Skip to content

Commit b6b610f

Browse files
committed
fix
1 parent bb0e404 commit b6b610f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/convolution/gcd_convolution.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//! @code
33
//! auto gcd_conv = gcd_convolution(a, b);
44
//! @endcode
5-
//! ssize(a)==ssize(b)
5+
//! sz(a)==sz(b)
66
//! gcd_conv[k] = sum of (a[i]*b[j])
77
//! for all pairs (i,j) where gcd(i,j)==k
88
//! @time O(n log n)

library/convolution/lcm_convolution.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//! @code
33
//! auto lcm_conv = lcm_convolution(a, b);
44
//! @endcode
5-
//! ssize(a)==ssize(b)
5+
//! sz(a)==sz(b)
66
//! lcm_conv[k] = sum of (a[i]*b[j])
77
//! for all pairs (i,j) where lcm(i,j)==k
88
//! @time O(n log n)

0 commit comments

Comments
 (0)