We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Write a function that given a number, returns the sum of all of its factors. Input: 4 Output: 6 (because it is 1+2+4)
Input: 10 Output: 18 (because it is 1+2+5+10)
The text was updated successfully, but these errors were encountered:
llipio#60 test and solutions
1d38515
8bdb67a
Fixed comments in Solution llipio#60
4bd26e2
Updated header comments Solution llipio#60
359d36d
Merge pull request #65 from ColinX13/colin3
fde5bb0
#60 test and solutions
No branches or pull requests
Write a function that given a number, returns the sum of all of its factors.
Input: 4
Output: 6 (because it is 1+2+4)
Input: 10
Output: 18 (because it is 1+2+5+10)
The text was updated successfully, but these errors were encountered: