Skip to content

Commit bc9f738

Browse files
committed
Update docstring and 0-padding of directory name. Reference: #3256
1 parent 0343b15 commit bc9f738

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

project_euler/problem_75/sol1.py renamed to project_euler/problem_075/sol1.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
"""
2+
Project Euler Problem 75: https://projecteuler.net/problem=75
3+
24
It turns out that 12 cm is the smallest length of wire that can be bent to form an
35
integer sided right angle triangle in exactly one way, but there are many more examples.
46
@@ -48,4 +50,4 @@ def solution(limit: int = 1500000) -> int:
4850

4951

5052
if __name__ == "__main__":
51-
print(solution())
53+
print(f"{solution() = }")

0 commit comments

Comments
 (0)