Project Euler is a collection of mathematical programming problems of varying difficulty. Please be aware that the purpose of Project Euler is to encourage people to think and learn so publishing the solution or working code would render this process useless.

learn more… | top users | synonyms

393
votes
28answers
71k views

Fastest way to determine if an integer's square root is an integer

I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but ...
191
votes
9answers
48k views

How can you profile a Python script?

I've seen a quite a few questions on the Project Euler and other places asking how to time the execution of their solutions. Sometimes the given answers are somewhat kludgey - i.e., adding timing code ...
113
votes
19answers
20k views

Fastest way to list all primes below N in python

This is the best algorithm I could come up with after struggling with a couple of Project Euler's questions. def get_primes(n): numbers = set(range(n, 1, -1)) primes = [] while numbers: ...
97
votes
16answers
12k views

Websites like projecteuler.net [closed]

Sometimes I'm solving problems on projecteuler.net. Almost all problems are solvable with programs, but these tasks are more mathematical than programmatical. Maybe someone knows similar sites with: ...
47
votes
6answers
18k views

How do I break out of a loop in Scala?

How do I break out a loop (for problem 4 of Project Euler)? var largest=0 for(i<-999 to 1 by -1) { for (j<-i to 1 by -1) { val product=i*j if (largest>product) ...
46
votes
15answers
28k views

How do I check if a number is a palindrome?

Any language. Any algorithm (except making the number a string and then reversing the string). Also, I actually have to do this, and I'll be posting my solution too.
33
votes
8answers
3k views

Why is this Java code 6x faster than the identical C# code?

UPDATE 2: Changing the target from x86 to anycpu has lowered the average execution time to 84ms per run, down from 282ms. Maybe I should split this off into a second thread? UPDATE: Thanks to Femaref ...
33
votes
12answers
33k views

Find all combinations of coins when given some dollar value

I found a piece of code that I was writing for interview prep few months ago. According to the comment I had, it was trying to solve this problem: Given some dollar value in cents (e.g. 200 = 2 ...
32
votes
12answers
5k views

What is your favorite Project Euler question? [closed]

I was searching around for questions related to Project Euler on Stack Overflow, and it seems that there were plenty of people asking about it, and even more people recommending it, whether for fun, ...
28
votes
6answers
7k views

Project Euler - Problem 8 - Help with understanding requirement

I am working through the problems on project Euler and am not to certain if my understanding of the question is correct. Problem 8 is as follows: Find the greatest product of five consecutive ...
25
votes
7answers
21k views

Python: List vs Dict for look up table

I have about 10million values that I need to put in some type of look up table, so I was wondering which would be more efficient a list or dict? I know you can do something like this for both: if ...
23
votes
16answers
5k views

Is there a simple algorithm that can determine if X is prime, and not confuse a mere mortal programmer?

I have been trying to work my way through Project Euler, and have noticed a handful of problems ask for you to determine a prime number as part of it. 1) I know I can just divide x by 2, 3, 4, 5, ...
23
votes
5answers
5k views

How can I represent a very large integer in .NET?

Does .NET come with a class capable of representing extremely large integers, such as 100 factorial? If not, what are some good third party libraries to accomplish this?
22
votes
13answers
5k views

Project Euler #15

Last night I was trying to solve challenge #15 from Project Euler : Starting in the top left corner of a 2×2 grid, there are 6 routes (without backtracking) to the bottom right corner. ...
21
votes
4answers
2k views

Recommended reading for solving Project Euler problems?

Can anyone suggest any mathematical or programming books that have helped you progress in your learning whilst completing the project Euler problems? Even some suggestions for study areas or ...
19
votes
5answers
852 views

How to improve the performance of this Haskell program?

I'm working through the problems in Project Euler as a way of learning Haskell, and I find that my programs are a lot slower than a comparable C version, even when compiled. What can I do to speed up ...
19
votes
7answers
9k views

Beginner practical programming problems? [closed]

Where can I find lists of practical programming problems for a novice? Something similar to http://www.projecteuler.net, but for practical problems. I am asking for problems even less complex than ...
18
votes
5answers
3k views

No overflow exception for int in C#?

I had this weird experience with problem number 10 on Project Euler (great site by the way). The assignment was to calculate the sum of all the prime numbers below two million. I used an int for the ...
18
votes
9answers
1k views

What can I do to speed up this code?

I'm trying to learn Java, Scala, & Clojure. I'm working through the Project Euler problems in the three languages. Listed below is the code for problem #5 (http://projecteuler.net/problem=5) as ...
17
votes
14answers
4k views

Fastest algorithm to check if a number is pandigital?

Pandigital number is a number that contains the digits 1..number length. For example 123, 4312 and 967412385. I have solved many Project Euler problems, but the Pandigital problems always exceed the ...
17
votes
7answers
2k views

Mathematics / Algorithmic Resources: ProjectEuler.net puzzles

I've used brute force for the most part for the ProjectEuler.net problems that I have been able to solve. One thing I'm finding is that, for some of the puzzles, I'm not able to find good resources ...
16
votes
5answers
953 views

Why is filter in front of foldLeft slow in Scala?

I wrote an answer to the first Project Euler question: Add all the natural numbers below one thousand that are multiples of 3 or 5. The first thing that came to me was: (1 until 1000).filter(i ...
15
votes
7answers
4k views

Is using goto a legitimate way to break out of two loops?

I am solving problem 9 on the Project Euler. In my solution I use a "goto" statement to break out of two for loops. The Problem is the following: A Pythagorean triplet is a set of three natural ...
15
votes
4answers
2k views

Dynamic programming in the functional paradigm

I'm looking at Problem thirty one on Project Euler, which asks, how many different ways are there of making £2 using any number of coins of 1p, 2p, 5p, 10p, 20p, 50p, £1 (100p) and £2 (200p). There ...
15
votes
2answers
713 views

Project Euler #163 understanding

I spent quite a long time searching for a solution to this problem. I drew tons of cross-hatched triangles, counted the triangles in simple cases, and searched for some sort of pattern. Unfortunately, ...
14
votes
3answers
302 views

Why is this Haskell code snippet not infinitely recursive?

To help me learn Haskell, I am working through the problems on Project Euler. After solving each problem, I check my solution against the Haskell wiki in an attempt to learn better coding practices. ...
13
votes
6answers
1k views

Euler project #18 approach

I am looking into an Euler project. Specifically #18. To sum up, the idea is to find the max path from a triangle: 3 7 4 2 4 6 8 5 9 3 3 + 7 + 4 + 9 = 23. Reading for this, most people ...
13
votes
2answers
375 views

In R why is factorial(100) displayed differently to prod(1:100)?

In R I am finding some odd behaviour that I can't explain and I am hoping someone here can. I believe that the value of 100! is this big number. A few lines from the console showing expected ...
12
votes
15answers
9k views

Project Euler Question 3 Help

I'm trying to work through Project Euler and I'm hitting a barrier on problem 03. I have an algorithm that works for smaller numbers, but problem 3 uses a very, very large number. Problem 03: The ...
11
votes
11answers
7k views

Find Pythagorean triplet for which a + b + c = 1000

A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a2 + b2 = c2 For example, 32 + 42 = 9 + 16 = 25 = 52. There exists exactly one Pythagorean triplet for which a ...
11
votes
8answers
3k views

Why does (int)55 == 54 in C++?

So I'm learning C++. I've got my "C++ Programming Language" and "Effective C++" out and I'm running through Project Euler. Problem 1...dunzo. Problem 2...not so much. I'm working in VS2008 on a ...
11
votes
6answers
5k views

What is the most efficient way of finding all the factors of a number in Python?

Can someone explain to me an efficient way of finding all the factors of a number in Python (2.7)? I can create algorithms to do this job, but i think it is poorly coded, and takes too long to ...
11
votes
4answers
378 views

Why isn't this running in constant space (and how do I make it so it does)?

I'm doing Project Euler to learn Clojure. The purpose of this function is to calculate the lcm of the set of integers from 1 to m. (lcm 10) returns 2520 This is a rather brute-force way of doing ...
11
votes
3answers
4k views

Best bignum library to solve Project Euler problems in C++?

I am still a student, and I find project Euler very fun. sometimes the question requires calculations that are bigger than primitive types. I know you can implement it but I am too lazy to do this, ...
11
votes
9answers
2k views

How do I memoize a recursive function in Lisp?

I'm a Lisp beginner. I'm trying to memoize a recursive function for calculating the number of terms in a Collatz sequence (for problem 14 in Project Euler). My code as of yet is: (defun collatz-steps ...
11
votes
2answers
615 views

GHC Optimization: Collatz conjecture

I've written code for the Project Euler's Challenge 14, in both Haskell and C++ (ideone links). They both remember any calculations they have previously done in an array. Using ghc -O2 and g++ -O3 ...
11
votes
1answer
1k views

Project Euler Number 338

I'm stuck on Project Euler problem 338. Here is what I've done so far... Let's denote a rectangle with width and height x and y respectively (x,y). To form new rectangles you can consider cutting a ...
10
votes
10answers
8k views

Quickest Method to Reverse in String in C#.net

Thank you for your entries. Here is my response. I'm currently writing a quick solution for Euler Problem #4 where one must find the largest palindromic number from the product of two 3-digit ...
10
votes
12answers
2k views

The lisp-way to solve Fibonnaci

I wanted to try and learn lisp, but I very quickly gave up. I figured I'd try again. I'm looking at Problem 2 on Project Euler - finding the sum of all the even Fibbonacci numbers under 4 Million. ...
10
votes
8answers
9k views

How to avoid scientific notation for large numbers?

I am doing 2^1000 and am getting this: 1.07151e+301 Is there any way to actually turn this into a proper number without the e+301 or at least can anyone show me where I can see how to turn this in ...
10
votes
9answers
6k views

Project Euler #16 - C# 2.0

I've been wrestling with Project Euler Problem #16 in C# 2.0. The crux of the question is that you have to calculate and then iterate through each digit in a number that is 604 digits long (or ...
10
votes
6answers
2k views

I have a Python list of the prime factors of a number. How do I (pythonically) find all the factors?

I'm working on a Project Euler problem which requires factorization of an integer. I can come up with a list of all of the primes that are the factor of a given number. The Fundamental Theorem of ...
10
votes
5answers
295 views

Why is Java not telling me when I can't use Integer?

For a small project (Problem 10 Project Euler) i tried to sum up all prime numbers below 2 millions. So I used a brute force method and iterated from 0 to 2'000'000 and checked if the number is a ...
10
votes
4answers
7k views

Python recursive function error: “maximum recursion depth exceeded”

I solved Problem 10 of Project Euler with the following code, which works through brute force: def isPrime(n): for x in range(2, int(n**0.5)+1): if n % x == 0: return False ...
10
votes
5answers
301 views

Multiplicative combination algorithm

Problem: Given a number n, is there an efficient algorithm to obtain a list of 2-combinations from the set {1...n}, sorted by the value of the product of the combination? I need this in order to ...
10
votes
3answers
567 views

Project Euler 14: performance compared to C and memoization

I'm currently working on project euler problem 14. I solved it using a poorly coded program, without memoization, that took 386 5 seconds to run (see edit). Here it is: step :: (Integer, Int) -> ...
10
votes
3answers
626 views

Project Euler resources

I'm a student with an interest in computer science and a lot of time on my hands. I've started solving Project Euler problems in PHP and Python, and most of the early problems are pretty easy to solve ...
9
votes
4answers
549 views

Why is this prime test so slow?

This code was taken from the book "Haskell Road to Logic, Math and Programming". It implements sieve of eratosthenes algorithm and solves Project Euler Problem 10. sieve :: [Integer] -> [Integer] ...
9
votes
7answers
10k views

working with incredibly large numbers in .NET

I'm trying to work through the problems on projecteuler.net but I keep running into a couple of problems. The first is a question of storing large quanities of elements in a List<t>. I keep ...
9
votes
3answers
586 views

Why is this Haskell expression so slow?

I'm working on Project Euler Problem 14. Here's my solution. import Data.List collatzLength :: Int->Int collatzLength 1 = 1 collatzLength n | odd n = 1 + collatzLength (3 * n + 1) ...

1 2 3 4 5 17