project-euler/src/Python/Problem059.py
David Doblas Jiménez 87392c7ef8 Add problem statements
2021-10-13 14:26:17 +02:00

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()}")