Home /
Expert Answers /
Computer Science /
use-the-drracket-3-20-points-design-a-racket-function-named-findproperdivisor-that-takes-a-natura-pa675
(Solved): use the drracket 3. (20 points) Design a Racket function named findProperDivisor that takes a natura ...
use the drracket
3. (20 points) Design a Racket function named findProperDivisor that takes a natural number and calculate the sum of all its proper divisors. A proper divisor of a natural number is the divisor that is strictly less than the number. Examples: Input: 20 Output: 22 //Proper divisors: \( 1+2+4+5+10=22 \) Input: 36 Output: 55 //Proper divisors \( 1+2+3+4+6+9+12+18=55 \)