Skip to content

Hacktoberfest 2020: Add typehints and default argument for project_euler/problem_01 #2891

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 1 commit into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion project_euler/problem_01/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


def solution(n):
def solution(n: int = 1000) -> int:
"""Returns the sum of all the multiples of 3 or 5 below n.

>>> solution(3)
Expand Down
2 changes: 1 addition & 1 deletion project_euler/problem_01/sol2.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


def solution(n):
def solution(n: int = 1000) -> int:
"""Returns the sum of all the multiples of 3 or 5 below n.

>>> solution(3)
Expand Down
2 changes: 1 addition & 1 deletion project_euler/problem_01/sol3.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


def solution(n):
def solution(n: int = 1000) -> int:
"""
This solution is based on the pattern that the successive numbers in the
series follow: 0+3,+2,+1,+3,+1,+2,+3.
Expand Down
2 changes: 1 addition & 1 deletion project_euler/problem_01/sol4.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


def solution(n):
def solution(n: int = 1000) -> int:
"""Returns the sum of all the multiples of 3 or 5 below n.

>>> solution(3)
Expand Down
2 changes: 1 addition & 1 deletion project_euler/problem_01/sol5.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""A straightforward pythonic solution using list comprehension"""


def solution(n):
def solution(n: int = 1000) -> int:
"""Returns the sum of all the multiples of 3 or 5 below n.

>>> solution(3)
Expand Down
2 changes: 1 addition & 1 deletion project_euler/problem_01/sol6.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


def solution(n):
def solution(n: int = 1000) -> int:
"""Returns the sum of all the multiples of 3 or 5 below n.

>>> solution(3)
Expand Down
2 changes: 1 addition & 1 deletion project_euler/problem_01/sol7.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


def solution(n):
def solution(n: int = 1000) -> int:
"""Returns the sum of all the multiples of 3 or 5 below n.

>>> solution(3)
Expand Down