-
-
Notifications
You must be signed in to change notification settings - Fork 46.9k
Added file aliquot_sum.py #1985
New issue
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
4bf73aa
Added file aliquot_sum.py containing a function to find theo
ken437 245369f
Added parameter type info to aliquot_sum.py
ken437 05b344f
Update maths/aliquot_sum.py
ken437 e014506
Update maths/aliquot_sum.py
ken437 a8a04df
Updated code to raise ValueErrors if input is bad
ken437 357695c
Fixed logical operators
ken437 1e2ba33
Removed unnecessary import
ken437 2a11167
Updated aliquot_sum.py
ken437 eb79bdd
fixed formatting
ken437 366b5e8
fixed documentation
ken437 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
def aliquot_sum(input_num: int) -> int: | ||
""" | ||
Finds the aliquot sum of an input integer, where the | ||
aliquot sum of a number n is defined as the sum of all | ||
natural numbers less than n that divide n evenly. For | ||
example, the aliquot sum of 15 is 1 + 3 + 5 = 9. This is | ||
a simple O(n) implementation. | ||
@param input_num: a positive integer whose aliquot sum is to be found | ||
@return: the aliquot sum of input_num, if input_num is positive. | ||
Otherwise, raise a ValueError | ||
Uncyclopedia Explanation: https://en.wikipedia.org/wiki/Aliquot_sum | ||
>>> aliquot_sum(15) | ||
9 | ||
>>> aliquot_sum(6) | ||
6 | ||
>>> aliquot_sum(-1) | ||
Traceback (most recent call last): | ||
... | ||
ValueError: Input must be positive | ||
>>> aliquot_sum(0) | ||
Traceback (most recent call last): | ||
... | ||
ValueError: Input must be positive | ||
>>> aliquot_sum(1.6) | ||
Traceback (most recent call last): | ||
... | ||
ValueError: Input must be an integer | ||
>>> aliquot_sum(12) | ||
16 | ||
>>> aliquot_sum(1) | ||
0 | ||
>>> aliquot_sum(19) | ||
1 | ||
""" | ||
if not isinstance(input_num, int): | ||
raise ValueError("Input must be an integer") | ||
if input_num <= 0: | ||
raise ValueError("Input must be positive") | ||
return sum(divisor for divisor in range(1, input_num) if input_num % divisor == 0) | ||
|
||
|
||
if __name__ == "__main__": | ||
import doctest | ||
|
||
doctest.testmod() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.