
[LeetCode/Kotlin]Easy - 507. Perfect Number
·
LeetCode/Kotlin | Easy
https://leetcode.com/problems/perfect-number/description/문제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 = 28Output: trueExplanation: 28 = 1 + 2 + 4 + 7 + 141..