Skip to content

Commit d1e06c4

Browse files
committed
redundant newline
1 parent 3280008 commit d1e06c4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

cp-algo/number_theory/factorize.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#include <generator>
66
namespace cp_algo::math {
77
// https://en.wikipedia.org/wiki/Pollard%27s_rho_algorithm
8-
98
auto proper_divisor(uint64_t m) {
109
using base = dynamic_modint<>;
1110
return m % 2 == 0 ? 2 : base::with_mod(m, [&]() {

0 commit comments

Comments
 (0)