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

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 ...
-1
votes
1answer
106 views

Off-by 1 Error in Project Euler 19 [closed]

I'm doing Project Euler #19. It's obviously a trivial problem if you just want to loop through month-by month and apply some high-school modular arithmetic but I'm trying a different approach just for ...
1
vote
2answers
108 views

Unexpected behaviour when inserting object into NSMutableArray

So I've been working on Project Euler problem 25 in Objective-C and I ran up against the size limit of NSDecimalNumber. So after attempting to use other code libraries I decided to re-represent my ...
-1
votes
2answers
640 views

Getting the error floating point exception: 8

I have no idea why g++ doesn't like my code. It ran fine in java. Any insights would be greatly appreciated. #include<iostream> using namespace std; bool isPrime(long number); int main(){ ...
-2
votes
1answer
64 views

End keyword in ruby

I just try to solve problem #45 from project-euler using ruby. I know the approach. But I wrote the code, It doesn't run. I am new to ruby, I don't know why there has to be so many "end" keyword at ...
0
votes
2answers
205 views

BigInt isPrime test, more elegant solution?

Is this the most elegant way to express a isPrime function for BigInt objects? Here's what I have for regular integers: def isPrimeForInt(n: Int): Boolean = { val ceiling = ...
1
vote
2answers
192 views

Continued Fraction to Fraction Malfunction

I've been working on Project euler Problem 57 (Love the site!). For this problem a conversion is required between a finite continued fraction and a normal fraction. I devised an algorithm that ...
-2
votes
5answers
104 views

Three lines to find the greatest product in a string of numbers in Python

Full disclosure: this is for an assignment. Simply getting working code is enough, but doing this in three lines gets me extra credit. I'm trying to take a 1000-digit string and find the largest ...
0
votes
1answer
134 views

Correct code but Wrong ans :( [closed]

I am solving Project Euler Problem #18 in Python. I have successfully solved the sample problem given there, but failed in solving the main problem. But the code is same. Code is: matrix = [('75', ...
3
votes
4answers
206 views

How would you implement a divisor function?

The divisor function is the sum of divisors of a natural number. Making a little research I found this to be a very good method if you want to find the divisor function of a given natural number N, ...
-3
votes
3answers
134 views

Project Euler Number 3

First of all, this isn't homework... working on this outside of class to get some practice with java. public class Problem3 { public static void main(String[] args) { int n = 13195; // ...
-4
votes
2answers
109 views

I need help in making my program faster [closed]

I am working on projecteuler # 14 http://projecteuler.net/problem=14 and this is my code: Is there any way that I can make my code more efficient because it is taking way too long. Any and all help ...
-2
votes
2answers
128 views

list object not callable project euler 59

I am trying to do project euler problem 59, i am having an issue in that one of the necessary methods won't work as the program returns: xorNum = test(f,j) TypeError: 'list' object is not callable. ...
2
votes
2answers
285 views

Project Euler #23: Non-abundant sums

I'm struggling with Project Euler problem 23: Non-abundant sums. I have a script, that calculates abundant numbers: function getSummOfDivisors( $number ) { $divisors = array (); for( $i = ...
13
votes
2answers
373 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 ...
-6
votes
1answer
69 views

Logic error (I guess) on PHP [closed]

I'm trying to solve the 29th problem of project Euler using PHP. Here is the source code : $n[1000000000]; for($a=2; $a<=100; $a++){ for($b=2; $b<=100; $b++){ $n[$N]=pow($a,$b); ...
-1
votes
2answers
102 views

Common Lisp function returning the wrong value

I'm trying the project euler problems to learn common lisp and I'm stuck pretty early. On problem 1, the question is the sum of integers from 1 to 1000. I think the code below should do it, but it ...
-1
votes
1answer
206 views

For 64 bit, what is bigger than long in c++?

In my program, I need to calculate the sum of digits of 2 ^ 1000, but long int cannot store the value. I am working on projecteuler # 16 http://projecteuler.net/problem=16 and my program can solve ...
-1
votes
1answer
39 views

Trouble in finding number of divisors for Project Euler

I am currently working on ProjectEuler # 12 http://projecteuler.net/problem=12 My code continuously spits out the wrong answer I have pinpointed my problem to be in my "number_of_divisors" function ...
-1
votes
3answers
314 views

Summation of Prime Numbers in C++ [closed]

Hi guys I am working on a program to give the sum of all prime numbers under two million. Here's what I have... and I know this method works for finding prime numbers because I have used it before... ...
-1
votes
2answers
128 views

Project Euler #8 c++ from beginner

I Don't Understand why I am not getting the correct answer to this problem I just started c++ and my friends told me about projecteuler so I started doing its questions. Question 8 is: Find the ...
3
votes
2answers
176 views

Java: Finding the largest chain in a Collatz sequence

I cannot find what's wrong for Project Euler problem #14. My first step was finding the algorithm, which worked until the numbers hit around 120000. The code broke and realized that I needed to use ...
2
votes
5answers
212 views

Java: Summing all digits of 2^1000

I'm trying to solve Project Euler problem #16, where I need to sum all the digits of 2^1000. I've gotten stuck dealing with such a big number. My program worked for any number below 10^16, but failed ...
-1
votes
3answers
160 views

Feedback on lisp program for project euler 4 [closed]

I just started learning common lisp and so I've been working on project euler problems. Here's my solution (with some help from https://github.com/qlkzy/project-euler-cl ). Do you guys have any ...
0
votes
2answers
119 views

I don't understand element 103 from project Euler?

I am slowly solving my way though project Euler. I have reached problem 103 and I don't understand the criteria for the sets. The two rules given are (1), no two sets should have the same sum, (2), if ...
-1
votes
3answers
61 views

Unknown factor in answer

I can't find the problem with what I wrote. I am attempting Project Euler #16, where I need to sum all digits of 2^1000. My program works with small numbers, but as numbers get around 18 digits or so, ...
0
votes
1answer
205 views

Euler 11. There must be a better way than this

I'm working on the project Euler problems, and I'm not really satisfied with my solution for problem 11. Is there a way that I can traverse the matrix with fewer steps, or more quickly? Or in general, ...
-1
votes
4answers
112 views

Reading individual digits from a number stored in a file

I'm currently working through Project Euler problems as a way of learning C and I'm having trouble with problem #8, the actual maths and main bit of program is fine but the method requires reading ...
2
votes
4answers
268 views

Project Euler #2

I'm doing the problems on the project euler website and I'm stuck on the second one. Here's the problem: Each new term in the Fibonacci sequence is generated by adding the previous two terms. ...
-1
votes
2answers
109 views

Project Euler 3 Solution

In the following snippet from https://github.com/nayuki/Project-Euler-solutions/blob/master/p003.java private static long smallestFactor(long n) { for (long i = 2, end = Library.sqrt(n); i ...
0
votes
5answers
206 views

java.lang.OutOfMemoryError: Java heap space (Project Euler 14)

I'm working on Project Euler problem 14, and I don't get what the problem is. I keep getting a runtime error after the program runs for about 8 seconds–presumably the ArrayLists are getting too large, ...
1
vote
1answer
197 views

Project Euler # 23 Mathematica

I am solving Problem 23 of Project Euler using Mathematica: Find the sum of all positive integers that cannot be written as the sum of two abundant numbers. Recall that an abundant number # is ...
2
votes
2answers
182 views

Project Euler #2 For Large Limits

I have a Haskell solution to Project Euler Problem 2 which works fine for the four million limit, as well as for limits up to 10^100000, taking only a few seconds on my machine. But for anything ...
-1
votes
1answer
114 views

Project Euler #14 code output not coming

I used the following code for solving problem#14 but for some strange reason it gives no output.Maybe its taking too long to run??? P.S.I know that max is not supposed to be the answer but still there ...
7
votes
1answer
149 views

Making Go compiler use int64 by default

Is there any way I can make the Go compiler use int64 by default on my system? I am writing code for project Euler on my 64 bit machine. There is little chance the code would be shared so there is no ...
-3
votes
2answers
67 views

Why is this code having a timeout? [duplicate]

Possible Duplicate: Why does this code crash? Please tell me whats wrong with the following code???Why is it crashing??? I cant store the collatz values in the array however if I want to ...
4
votes
2answers
297 views

Using dynamic programming in Haskell? [Warning: ProjectEuler 31 solution inside]

In solving projecteuler.net's problem #31 [SPOILERS AHEAD] (counting the number of ways to make 2£ with the British coins), I wanted to use dynamic programming. I started with OCaml, and wrote the ...
6
votes
1answer
78 views

Iterative deletion from list (Python 2)

I've just started programming, and I'm solving Project Euler problems with Python for practice. (This is problem #2, finding the sum of the even fibonacci numbers within 4 million) My problem appears ...
1
vote
1answer
153 views

Optimizing longest Collatz chain in Haskell

I've been doing project Euler problems to learn Haskell. I've have some bumps on the way but managed to get to problem 14. The question is, which starting number under 1 000 000 produces the longest ...
1
vote
2answers
157 views

Project Euler #119 Make Faster

Trying to solve Project Euler problem 119: The number 512 is interesting because it is equal to the sum of its digits raised to some power: 5 + 1 + 2 = 8, and 8^3 = 512. Another example of a ...
3
votes
5answers
183 views

Get list of elements that are divisible by 3 or 5 from 1 - 1000

I'm trying to write a functional approach in scala to get a list of all numbers between 1 & 1000 that are divisible by 3 or 5 Here is what I have so far : def getListOfElements(): List[Int] = ...
4
votes
3answers
156 views

A wrong answer obviously means a logic error, but what is at fault in what was thought?

Problem 14 on Project Euler describes a certain puzzle that many people have asked about here. My question is not how to solve the problem or how to fix other people's errors. After thinking about the ...
6
votes
2answers
432 views

Project Euler 240: number of ways to roll dice

I 'm trying to solve Project Euler problem 240: In how many ways can twenty 12-sided dice (sides numbered 1 to 12) be rolled so that the top ten sum to 70? I've come up with code to solve this. ...
1
vote
5answers
400 views

Python summing itertools.count?

I'm having some trouble with the itertools.count function, and I don't quite understand what it does. I expect the code below to accomplish Project Euler problem 2. I know that I could write this ...
0
votes
1answer
289 views

Project Euler #37: my solution is too slow

I am toying with project euler problem 37. The problem is stated as follows: The number 3797 has an interesting property. Being prime itself, it is possible to continuously remove digits from left ...
1
vote
2answers
137 views

find the least number whose square is of form 1_2_3_4_5_6_7_8_9_0. Where “_” could be any 1 digit number [closed]

In my recent interview, the interviewer asked me to write a Java program to find the least number whose square is of form 1_2_3_4_5_6_7_8_9_0. Where "_" could be any 1 digit number. And I'd stuck in ...
0
votes
2answers
110 views

Program does not terminate when not using lazy val

This is a solution to problem 14 on euler project. But strange thing: this program does not terminate when val answer is not declared as lazy. While the val is lazy the solution is produced in ...
-1
votes
4answers
92 views

Project Euler: Riddle 4 - What is my Ruby code doing?

I'm NOT asking for a solution to this riddle. So, I'm working through the Project Euler problems using Ruby. I made a palindrome checker with the following method: def is_palindrome(n) if n.to_s ...
1
vote
3answers
912 views

Project Euler #5(Smallest positive number divisible by all numbers from 1 to 20): Ways to Optimize?? ~Java

Problem 5: 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that is evenly divisible by all of the ...
1
vote
2answers
433 views

Uniform Cost search project euler #81

I am working on project euler programs for the sake of 'enlightenment' not just solving them. I have solved question 81 using dynamic progam on the 80x80 matrix but when I try to solve it using ...

1 2 3 4 5 17