Skip to content

Address #2786 - Fix code style in Project Euler Problem 76 #2978

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 4 commits into from
Oct 7, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions project_euler/problem_76/sol1.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Counting Summations
Problem 76
Problem 76: https://projecteuler.net/problem=76

It is possible to write five as a sum in exactly six different ways:

Expand All @@ -16,25 +16,26 @@
"""


def partition(m):
"""Returns the number of different ways one hundred can be written as a sum
of at least two positive integers.
def solution(m: int = 100) -> int:
"""
Returns the number of different ways the number m can be written as a
sum of at least two positive integers.

>>> partition(100)
>>> solution(100)
190569291
>>> partition(50)
>>> solution(50)
204225
>>> partition(30)
>>> solution(30)
5603
>>> partition(10)
>>> solution(10)
41
>>> partition(5)
>>> solution(5)
6
>>> partition(3)
>>> solution(3)
2
>>> partition(2)
>>> solution(2)
1
>>> partition(1)
>>> solution(1)
0
"""
memo = [[0 for _ in range(m)] for _ in range(m + 1)]
Expand All @@ -51,4 +52,4 @@ def partition(m):


if __name__ == "__main__":
print(partition(int(str(input()).strip())))
print(solution(int(input("Enter a number: ").strip())))