Common functions and helpful tools used to solve problems in Project Euler: Downloadable source: Euler.py source A set of routines used to help solve math problems. Euler.py is included as needed. The example below shows typical Python usage: from Euler import is_prime, is_perm Here is the contents of Euler.py from math import sqrt, ceil import […]
Investigate the game of chance involving colored discs.
Find the largest palindrome made from the product of two 3-digit numbers.
Find the smallest number divisible by each of the numbers 1 to 20.
Find the value of the first triangle number to have over five hundred divisors
Find the number of routes from the top left corner to the bottom right corner in a rectangular grid.
Maximum sum from top to bottom of triangular array.
Evaluate the sum of all amicable pairs under 10,000.
Calculate the total of all the name scores in the file of first names.
Find the sum of both diagonals in a square spiral.