Skip to content

Commit

Permalink
redundant newline
Browse files Browse the repository at this point in the history
  • Loading branch information
adamant-pwn committed Nov 12, 2024
1 parent 3280008 commit d1e06c4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cp-algo/number_theory/factorize.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <generator>
namespace cp_algo::math {
// https://en.wikipedia.org/wiki/Pollard%27s_rho_algorithm

auto proper_divisor(uint64_t m) {
using base = dynamic_modint<>;
return m % 2 == 0 ? 2 : base::with_mod(m, [&]() {
Expand Down

0 comments on commit d1e06c4

Please sign in to comment.