Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
127 lines (116 loc) · 19.1 KB

File metadata and controls

127 lines (116 loc) · 19.1 KB

Coverage Status Language grade: Python Total alerts

Here lies my attempts at the problems posted on https://projecteuler.net/archives. The table bearing the problem ID and description below will be updated periodically as I work through more problems. All problem solutions are written in Python and will be placed within the "src" folder.

Baby Steps: Solve three problems The Journey Begins: Progress to Level 1 by solving twenty-five problems Decathlete: Solve ten consecutive problems


ID Description / Title Solution Tests Status
1 Multiples of 3 and 5 pe1.py test_pe1.py 🟢
2 Even Fibonacci numbers pe2.py test_pe2.py 🟢
3 Largest prime factor pe3.py test_pe3.py 🟢
4 Largest palindrome product pe4.py test_pe4.py 🟢
5 Smallest multiple pe5.py test_pe5.py 🟢
6 Sum square difference pe6.py test_pe6.py 🟢
7 10001st prime pe7.py test_pe7.py 🟢
8 Largest product in a series pe8.py test_pe8.py 🟢
9 Special Pythagorean triplet pe9.py test_pe9.py 🟢
10 Summation of primes pe10.py test_pe10.py 🟢
11 Largest product in a grid pe11.py test_pe11.py 🟢
12 Highly divisible triangular number pe12.py test_pe12.py 🟢
13 Large sum pe13.py test_pe13.py 🟢
14 Longest Collatz sequence pe14.py test_pe14.py 🟢
15 Lattice paths pe15.py test_pe15.py 🟢
16 Power digit sum pe16.py test_pe16.py 🟢
17 Number letter counts pe17.py test_pe17.py 🟢
18 Maximum path sum I pe18.py test_pe18.py 🟢
19 Counting Sundays pe19.py test_pe19.py 🟢
20 Factorial digit sum pe20.py test_pe20.py 🟢
21 Amicable numbers pe21.py test_pe21.py 🟢
22 Names scores pe22.py test_pe22.py 🟢
23 Non-abundant sums pe23.py test_pe23.py 🟢
24 Lexicographic permutations pe24.py test_pe24.py 🟢
25 1000-digit Fibonacci number pe25.py test_pe25.py 🟢
26 Reciprocal cycles pe26.py test_pe26.py 🟢
27 Quadratic primes pe27.py test_pe27.py 🟢
28 Number spiral diagonals pe28.py test_pe28.py 🟢
29 Distinct powers pe29.py test_pe29.py 🟢
30 Digit fifth powers pe30.py test_pe30.py 🟢
31 Coin sums test_pe31.py
32 Pandigital products