We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3550533 commit 913fe1fCopy full SHA for 913fe1f
src/algebra/factorization.md
@@ -73,7 +73,7 @@ So this leaves us with only $33.3\%$ percent of the numbers to check.
73
We can implement this by factoring out the primes 2 and 3 first, after which we start with 5 and only count remainders $1$ and $5$ modulo $6$.
74
75
Here is an implementation for the prime number 2, 3 and 5.
76
-It is convenient to store skippable numbers in an array.
+It is convenient to store the sizes of skipping increments in an array.
77
78
```{.cpp file=factorization_trial_division3}
79
vector<long long> trial_division3(long long n) {
0 commit comments