We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0343b15 commit bc9f738Copy full SHA for bc9f738
project_euler/problem_75/__init__.py renamed to project_euler/problem_075/__init__.py
project_euler/problem_75/sol1.py renamed to project_euler/problem_075/sol1.py
@@ -1,4 +1,6 @@
1
"""
2
+Project Euler Problem 75: https://projecteuler.net/problem=75
3
+
4
It turns out that 12 cm is the smallest length of wire that can be bent to form an
5
integer sided right angle triangle in exactly one way, but there are many more examples.
6
@@ -48,4 +50,4 @@ def solution(limit: int = 1500000) -> int:
48
50
49
51
52
if __name__ == "__main__":
- print(solution())
53
+ print(f"{solution() = }")
0 commit comments