-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPerfectNumber.php
More file actions
47 lines (45 loc) · 1.08 KB
/
Copy pathPerfectNumber.php
File metadata and controls
47 lines (45 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
namespace App;
/**
* Perfect Number
*
* A perfect number is a positive integer that is equal to the sum of its positive divisors, excluding the number
* itself. A divisor of an integer x is an integer that can divide x evenly. Given an integer n, return true if n is
* a perfect number, otherwise return false.
*
* Example 1:
* Input: num = 28
* Output: true
* Explanation: 28 = 1 + 2 + 4 + 7 + 14
* 1, 2, 4, 7, and 14 are all divisors of 28.
*
* Example 2:
* Input: num = 7
* Output: false
*
* https://leetcode.com/problems/perfect-number
*/
class PerfectNumber
{
/**
* @param int $number
* @return bool
*/
public function checkPerfectNumber(int $number): bool
{
if ($number === 1) {
return false;
}
$sum = 1;
$limit = sqrt($number);
for ($i = 2; $i <= $limit; $i++) {
if ($number % $i === 0) {
$sum += $i;
if ($i * $i !== $number) {
$sum += $number / $i;
}
}
}
return $sum === $number;
}
}