Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
Favorite Tags

2 Posted Topics

Member Avatar for reeta_1

A positive integer n is said to be perfect if the sum of the factors of n, other than n itself, add up to n. For instance 6 is perfect since the factors of 6 are {1,2,3,6} and 1+2+3=6. Likewise, 28 is perfect because the factors of 28 are {1,2,4,7,14,28} …

Member Avatar for rubberman
0
346
Member Avatar for breaksand30

write a function sumsquares(1) that takes as input a list of integers and return the sum of all the perfect squares in 1

Member Avatar for reeta_1
0
4K

The End.