Unified numbers and output

This commit is contained in:
2023-04-01 15:57:07 +02:00
parent e004055fb3
commit 220a742b6b
50 changed files with 188 additions and 179 deletions

View File

@@ -5,7 +5,7 @@ Created on 7 Jan 2018
@author: David Doblas Jiménez
@email: daviddoji@pm.me
Solution for problem 14 of Project Euler
Solution for problem 014 of Project Euler
https://projecteuler.net/problem=14
"""
@@ -26,7 +26,7 @@ def chain_length(n, terms):
return length
@timeit("Problem 14")
@timeit("Problem 014")
def compute():
"""
The following iterative sequence is defined for the set of positive
@@ -63,4 +63,4 @@ def compute():
if __name__ == "__main__":
print(f"Result for Problem 14 is {compute()}")
print(f"Result for Problem 014: {compute()}")