Project Euler - Problem 5
Wednesday, May 9, 2012 at 5:06PM What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20?
This was a neat question could be brute forced easily but that would be very slow. There is a table method which exploits the properties of prime numbers to find least common multiple of a set of numbers. The exact method can be found on the least common multiple wikipedia page
Problem 5,
Programming,
Project Euler,
Python in
Programming 
