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,14 +5,14 @@ Created on 3 Jan 2020
@author: David Doblas Jiménez
@email: daviddoji@pm.me
Solution for problem 28 of Project Euler
Solution for problem 028 of Project Euler
https://projecteuler.net/problem=28
"""
from utils import timeit
@timeit("Problem 28")
@timeit("Problem 028")
def compute():
"""
Starting with the number 1 and moving to the right in a clockwise
@@ -45,4 +45,4 @@ def compute():
if __name__ == "__main__":
print(f"Result for Problem 28 is {compute()}")
print(f"Result for Problem 028: {compute()}")