Skip to content

Commit 1307efe

Browse files
committed
update filenames and code to comply with new regulations
1 parent 1653eb0 commit 1307efe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

project_euler/problem_57/sol1.py renamed to project_euler/problem_057/sol1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Problem 57: Square root convergents
2+
Project Euler Problem 57: https://projecteuler.net/problem=57
33
It is possible to show that the square root of two can be expressed as an infinite
44
continued fraction.
55
@@ -45,4 +45,4 @@ def solution(n: int = 1000) -> int:
4545

4646

4747
if __name__ == "__main__":
48-
print(f"{solution(10000) = }")
48+
print(f"{solution() = }")

0 commit comments

Comments
 (0)