Package g0501_0600.s0507_perfect_number
Class Solution
-
- All Implemented Interfaces:
public final class Solution
507 - Perfect Number.
Easy
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 dividex
evenly.Given an integer
n
, returntrue
ifn
is a perfect number, otherwise returnfalse
.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
Constraints:
<code>1 <= num <= 10<sup>8</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final Boolean
checkPerfectNumber(Integer num)
-
-
Method Detail
-
checkPerfectNumber
final Boolean checkPerfectNumber(Integer num)
-
-
-
-