perfect-number-sqrt-complexity

Status: IN

`checkPerfectNumber` runs in O(sqrt(n)) time and O(1) space by harvesting paired divisors from a loop up to `isqrt(num)`.

Source: entries/2026/06/06/perfect-number-solution.md

JSON