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

111
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: ...
189
votes
9answers
47k 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 ...
393
votes
28answers
70k 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 ...
33
votes
12answers
32k 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 ...
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?
45
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.
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 ...
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
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, ...
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 ...
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, ...
6
votes
4answers
3k views

Project Euler Problem 12 - C++

I'm working on problem 12 regarding the first triangle number with 500 divisors. I tried to brute force the solution. I get 300 divisors in about 35 seconds and can't get 400 within 10 minutes. I'm ...
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) ...
7
votes
10answers
7k views

Generating unique, ordered Pythagorean triplets

This is a program I wrote to calculate Pythagorean triplets. When I run the program it prints each set of triplets twice because of the if statement. Is there any way I can tell the program to only ...
7
votes
6answers
5k views

Project Euler Question 14 (Collatz Problem)

The following iterative sequence is defined for the set of positive integers: n ->n/2 (n is even) n ->3n + 1 (n is odd) Using the rule above and starting with 13, we generate the following sequence: ...
5
votes
3answers
3k views

Python: Invalid Token

Some of you may recognize this as Project Euler's problem number 11. The one with the grid. I'm trying to replicate the grid in a large multidimensional array, But it's giving me a syntax error and ...
1
vote
6answers
6k views

“Integer number too large” error message for 600851475143

public class Three { public static void main(String[] args) { Three obj = new Three(); obj.function(600851475143); } private Long function(long i) { ...
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 ...
7
votes
6answers
5k views

triangle numbers in python

I'm trying to solve the problem: What is the value of the first triangle number to have over five hundred divisors? A triangle number is a number in the sequence of the sum of numbers i.e. ...
-5
votes
12answers
16k views

Sum of the digits of the number 2^1000 [closed]

2^15 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26. What is the sum of the digits of the number 2 power of 1000 (2^1000)? Can anyone provide the solution or algorithm for this problem ...
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 ...
1
vote
1answer
230 views

Project Euler 17

I've been trying to solve Euler 17 and have been running into some trouble. The definition of that problem is: If the numbers 1 to 5 are written out in words: one, two, three, four, five, then ...
1
vote
5answers
352 views

Project Euler #3 takes forever in Java

Problem #3 on Project Euler is: The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143? My solution takes forever. I think I got the ...
18
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 ...
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. ...
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 ...
6
votes
10answers
5k views

Find out 20th, 30th, nth prime number. (I'm getting 20th but not 30th?) [Python]

The question is to find the 1000th prime number. I wrote the following python code for this. The problem is, I get the right answer for the 10th , 20th prime but after that each increment of 10 leaves ...
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 ...
5
votes
2answers
349 views

Euler 43 - is there a monad to help write this list comprehension?

Here is a way to solve Euler problem 43 (please let me know if this doesn't give the correct answer). Is there a monad or some other syntatic sugar which could assist with keeping track of the notElem ...
0
votes
4answers
6k views

How do you check whether a number is divisible by another number (Python)?

I need to test whether each number from 1 to 1000 is a multiple of 3 or a multiple of 5. The way I thought I'd do this would be to divide the number by 3, and if the result is an integer then it would ...
3
votes
5answers
3k views

Sum of even fibonacci numbers

This is a Project Euler problem. If you don't want to see candidate solutions don't look here. Hello you all! I'm developing an application that will find the sum of all even terms of the fibonacci ...
-1
votes
2answers
570 views

Stuck on Project Euler #3 in python

The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? Ok, so i am working on project euler problem 3 in python. I am kind of confused. I ...
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 ...
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 ...
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 ...
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) ...
8
votes
7answers
5k views

(ProjectEuler) Sum Combinations

From ProjectEuler.net: Prob 76: How many different ways can one hundred be written as a sum of at least two positive integers? I have no idea how to start this...any points in the right direction or ...
6
votes
7answers
5k views

Python program to find fibonacci series. More Pythonic way

There is another thread to discuss Fibo series in Python. This is to tweak code into more pythonic. How to write the Fibonacci Sequence in Python I am in love with this program I wrote to solve ...
3
votes
19answers
5k views

Prime factor of 300 000 000 000?

I need to find out the prime factors of over 300 billion. I have a function that is adding to the list of them...very slowly! It has been running for about an hour now and i think its got a fair ...
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 ...
10
votes
3answers
562 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
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 ...
1
vote
5answers
710 views

How can I maximally partition a set?

I'm trying to solve one of the Project Euler problems. As a consequence, I need an algorithm that will help me find all possible partitions of a set, in any order. For instance, given the set 2 3 3 ...
11
votes
2answers
614 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 ...
5
votes
10answers
3k views

Fibonacci One-Liner

I'm trying to solve questions from Project Euler in Ruby one-liners, and I'm curious if there's a more elegant solution for question two: Each new term in the Fibonacci sequence is generated by ...
3
votes
6answers
3k views

Project Euler 5 in Python - How can I optimize my solution?

I've recently been working on Project Euler problems in Python. I am fairly new to Python, and still somewhat new as a programmer. In any case, I've ran into a speed-related issue coding a solution ...
3
votes
8answers
2k views

How much time should it take to find the sum of all prime numbers less than 2 million?

I was trying to solve this Project Euler Question. I implemented the sieve of euler as a helper class in java. It works pretty well for the small numbers. But when I input 2 million as the limit it ...
3
votes
4answers
202 views

What is the bottleneck in this primes related predicate?

So here it is : I'm trying to calculate the sum of all primes below two millions (for this problem), but my program is very slow. I do know that the algorithm in itself is terribly bad and a ...
3
votes
6answers
2k views

Project Euler, Problem 10 java solution not working

I'm trying to find the sum of the prime numbers < 2,000,000. This is my solution in java but I can't seem get the correct answer. Please give some input on what could be wrong and general advice on ...

1 2 3