summaryrefslogtreecommitdiff
path: root/math/divisors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'math/divisors.cpp')
-rw-r--r--math/divisors.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/divisors.cpp b/math/divisors.cpp
index 638c87c..5afd4fb 100644
--- a/math/divisors.cpp
+++ b/math/divisors.cpp
@@ -8,4 +8,4 @@ ll countDivisors(ll n) {
if (isPrime(n)) res *= 2;
else if (n > 1) res *= isSquare(n) ? 3 : 4;
return res;
-} \ No newline at end of file
+}