26 lines
390 B
Python
26 lines
390 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Created on 13 Oct 2021
|
|
|
|
@author: David Doblas Jiménez
|
|
@email: daviddoji@pm.me
|
|
|
|
Solution for problem 59 of Project Euler
|
|
https://projecteuler.net/problem=59
|
|
"""
|
|
|
|
from utils import timeit
|
|
|
|
|
|
@timeit("Problem 59")
|
|
def compute():
|
|
"""
|
|
# Statement
|
|
"""
|
|
|
|
# Your code goes here
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
print(f"Result for Problem 59: {compute()}") |