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 1653eb0 commit 1307efeCopy full SHA for 1307efe
project_euler/problem_57/__init__.py renamed to project_euler/problem_057/__init__.py
project_euler/problem_57/sol1.py renamed to project_euler/problem_057/sol1.py
@@ -1,5 +1,5 @@
1
"""
2
-Problem 57: Square root convergents
+Project Euler Problem 57: https://projecteuler.net/problem=57
3
It is possible to show that the square root of two can be expressed as an infinite
4
continued fraction.
5
@@ -45,4 +45,4 @@ def solution(n: int = 1000) -> int:
45
46
47
if __name__ == "__main__":
48
- print(f"{solution(10000) = }")
+ print(f"{solution() = }")
0 commit comments