Problem 1012. Determine if input is a perfect number

A perfect number occurs whent the sum of all divisors of a positive integer, except the number itself, equals the number.
Example
28 = 1 + 2 + 4 + 7 + 14;
so return true
10 ~= 1 + 2 + 5
so return false

Solution Stats

48.25% Correct | 51.75% Incorrect
Last Solution submitted on Mar 05, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers215

Suggested Problems

More from this Author17

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!