My solution to Euler Project Problem #104 It uses C. Click to directly download euler-solution-104.c // filename 'euler-solution-104.c'// By: Louis Casillas, oxari… more →
Oxaric's Blogchakravyuuh wrote 2 weeks ago: Project Euler - Problem 4 After a while I had time to play around with Project Euler again. This is … more →
Weiqun wrote 1 month ago: Problem 11 What is the greatest product of four adjacent numbers in any direction (up, down, left, r … more →
Weiqun wrote 1 month ago: Problem 10 Find the sum of all the primes below two million. import math def list_of_primes(n): … more →
Tausiq Ahmed wrote 1 month ago: 125874 * 2 = 251748 125874 and 251748 are permuted, bcoz these two numbers contain same digits. How … more →
Weiqun wrote 1 month ago: Problem 9 A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a^2 + … more →
Weiqun wrote 1 month ago: Problem 8 Find the greatest product of five consecutive digits in the 1000-digit number. 73167176531 … more →
Weiqun wrote 1 month ago: Probelm 7 What is the 10001st prime number? def find_nth_prime(n): primes = [2] p = 2 … more →
Weiqun wrote 1 month ago: Problem 6 Find the difference between the sum of the squares of the first one hundred natural number … more →
Weiqun wrote 1 month ago: Problem 5 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 withou … more →
Weiqun wrote 1 month ago: Problem 4 A palindromic number reads the same both ways. The largest palindrome made from the produc … more →
Weiqun wrote 1 month ago: Problem 3 The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the nu … more →
Weiqun wrote 1 month ago: Problem 2 Each new term in the Fibonacci sequence is generated by adding the previous two terms. By … more →
Weiqun wrote 1 month ago: Problem 1 Find the sum of all the multiples of 3 or 5 below 1000. a = 0 for i in xrange(1000): … more →
abingham wrote 1 month ago: I finished problem 70 from Project Euler. My submission was based on a largely brute-force approach, … more →
jchiu1106 wrote 1 month ago: The problem is taken from Project-Euler, which asks what is the sum of all prime numbers under 2 mil … more →
mattgrande wrote 2 months ago: Here’s the next one. I’m not happy with the way I determine if it’s a prime numbe … more →
mattgrande wrote 2 months ago: Here we go, Project Euler #2! Each new term in the Fibonacci sequence is generated by adding the pre … more →
mattgrande wrote 2 months ago: I recently signed up for Project Euler. I’ve decided to see how far I can get, both just solv … more →
pherricoxide wrote 2 months ago: I don’t have much to rant about, Linux has been behaving itself, and with finals coming most o … more →