From 87392c7ef83418e5d62618b3a0a93e59fca5b4f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Doblas=20Jim=C3=A9nez?= Date: Wed, 13 Oct 2021 14:26:17 +0200 Subject: [PATCH] Add problem statements --- src/Python/Problem059.py | 26 ++++++++++++++++++++++++++ src/Python/Problem060.py | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 src/Python/Problem059.py create mode 100644 src/Python/Problem060.py diff --git a/src/Python/Problem059.py b/src/Python/Problem059.py new file mode 100644 index 0000000..1201ade --- /dev/null +++ b/src/Python/Problem059.py @@ -0,0 +1,26 @@ +#!/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()}") \ No newline at end of file diff --git a/src/Python/Problem060.py b/src/Python/Problem060.py new file mode 100644 index 0000000..e2c3761 --- /dev/null +++ b/src/Python/Problem060.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 +""" +Created on 13 Oct 2021 + +@author: David Doblas Jiménez +@email: daviddoji@pm.me + +Solution for problem 60 of Project Euler +https://projecteuler.net/problem=60 +""" + +from utils import timeit + + +@timeit("Problem 60") +def compute(): + """ + The primes 3, 7, 109, and 673, are quite remarkable. By taking any two + primes and concatenating them in any order the result will always be prime. + For example, taking 7 and 109, both 7109 and 1097 are prime. The sum of + these four primes, 792, represents the lowest sum for a set of four primes + with this property. + + Find the lowest sum for a set of five primes for which any two primes + concatenate to produce another prime. + """ + + # Your code goes here + + +if __name__ == "__main__": + + print(f"Result for Problem 60: {compute()}") \ No newline at end of file