Skip to content

Commit 80b05fc

Browse files
committed
mv str statement into docstr
1 parent a8ad2d1 commit 80b05fc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: project_euler/problem_01/sol5.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
Find the sum of all the multiples of 3 or 5 below N.
66
"""
77

8-
"""A straightforward pythonic solution using list comprehension"""
9-
108

119
def solution(n: int = 1000) -> int:
1210
"""Returns the sum of all the multiples of 3 or 5 below n.
11+
A straightforward pythonic solution using list comprehension.
1312
1413
>>> solution(3)
1514
0

0 commit comments

Comments
 (0)