Determine if a positive integer is abundant by comparing its proper divisors to the number itself.
Constraints
Example
>>> is_abundant(12) True >>> is_abundant(18) True >>> is_abundant(15) False
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints