Skip to content

Cleanup Project Euler Problem 01 #2893

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

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
add type hints
  • Loading branch information
drts01 committed Oct 6, 2020
commit a5c44cf11f8aa3d80bc96f6fb9bd5de37f8f75b3
3 changes: 2 additions & 1 deletion project_euler/problem_01/sol1.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# noqa: flake
"""
Problem Statement:
If we list all the natural numbers below 10 that are multiples of 3 or 5,
Expand All @@ -6,7 +7,7 @@
"""


def solution(n):
def solution(n: int) -> 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) -> 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) -> 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) -> 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) -> 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) -> 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) -> int:
"""Returns the sum of all the multiples of 3 or 5 below n.

>>> solution(3)
Expand Down