// archives

Project Euler

This category contains 2 posts

Common Functions and Routines for Project Euler

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 […]

Choosing a method to solve Project Euler problems

Development time, run-time constraints, debugging capabilities should all be considered when choosing a method to solve problems.