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

0
votes
2answers
164 views

Trying to find a faster solution for Project Euler #14 in Erlang

I tried to write a solution for problem 14 of Project Euler. MY fastest - NOT the one below - ran in 58 seconds or so. The fastest I found using Google looked more or less like this: %% ...
1
vote
3answers
130 views

My attempt at the -The largest prime factor- from Project Euler [closed]

It works for small numbers, but refuses to output more factors for the number being examined "600851475143". Here's my code, and mind you I am a total newbie at c++ #include<iostream> ...
-1
votes
1answer
233 views

Project Euler #201

I've been trying to solve Problem 201 for a while now, but i couldn't come up with a solution for such large sets. Given that the possible reachable sums don't exceed ~300,000, i tried a randomized ...
0
votes
1answer
221 views

Lattice paths memoization

I was trying to solve a Lattice paths problem using dynamic programming method. Starting in the top left corner of a 22 grid, there are 6 routes (without backtracking) to the bottom right corner. ...
0
votes
4answers
208 views

Logic behind code of number of divisors of a number

EDIT The question was finding the divisors of numbers like 1,3,6,10,15 which follows n*(n+1)/2 pattern. I got the answer, thanks I was going through this following code snippet by an experienced ...
1
vote
1answer
310 views

Project Euler #54 [closed]

I am stuck on Project Euler Problem 54. I don't know what I am doing wrong. The problem statement is a bit big, so here is the link. Here is the short version: In the card game poker, given ...
-1
votes
1answer
186 views

Project Euler 138

Problem 138 Basically, its asking for isosceles triangles where the height of the triangle is equal to base +- 1. After doing some math on paper, I use either of the following two equations to ...
4
votes
1answer
185 views

Project Euler #17 (java) [closed]

I'm working on Problem 17 at Project Euler. With the code below I'm getting 21088 as the answer which is wrong. I can't figure out where the problem is. Anyone know where I'm going wrong? Thanks. ...
-1
votes
1answer
47 views

Python Shell Erro

I have been using this code in a python shell- version 2.7.3, and I am getting this error. The code seems okay and I don't understand where I am going wrong. This is the error: Traceback (most ...
1
vote
1answer
1k views

typeerror unsupported operand type(s) for %: 'list' and 'int'

Here's the code: list = [2, 3, 5, 7, 11, 13] list2 = [range(list[-1], 2000000)] y =11 x = 1 v = list[-1]>= x while list[-1] ** 2 < 2000000: y= y + 2 prime = True while prime == ...
1
vote
1answer
221 views

Project Euler problem 18: finding the best route in a triangular grid

Project Euler problem 18 asks us to find the route from top to bottom of a triangular grid with the maximum sum. My program should be able to take in input as shown below. The number of test cases ...
0
votes
3answers
115 views

Sieve of Eratosthenes wrong output

I was trying to find out the sum of all prime up to 2 million. So I wrote the following code for it: #include <math.h> #include <stdlib.h> #define limit 2000000 int main(void) { ...
4
votes
4answers
939 views

Couldn't match expected type `Int' with actual type `Integer'

I have the following Haskell code: -- Problem 69 import ProjectEuler phi :: Integer -> Integer phi n = n * product [p - 1 | p <- primeDivisors n] `div` product [p | p <- primeDivisors n] ...
1
vote
2answers
157 views

Finding n such that f n is maximized in Haskell

I am using Project Euler problems to learn Haskell and I find a recurring theme in many of these problems where I need to find a value n that gives some property (usually minimum or maximum) to a ...
3
votes
1answer
180 views

Haskell: turning a non-infinite list into an infinite one + laziness (euler 391)

I've written the following Haskell code to produce a list where the nth element is the number of 1s in writing 1..n as binary numbers (it's related to euler 391, incidentally): buildList :: a -> ...
1
vote
3answers
132 views

How can I optimize python code: Euler projec prob 4

I've been working on Euler project problem 4, my code works fine but it takes too much time (0.41 seconds).How can I optimize it so that it would take less time.Is there a trick I'm missing, or ...
1
vote
2answers
111 views

Calculating numbers from an external file from my project (Project Euler #13)

I'm trying to find multiple ways to solve Project Euler's problem #13. I've already got it solved two different ways, but what I am trying to do this time is to have my solution read from a text file ...
3
votes
4answers
276 views

Abstractly How To Check If A Decryption Attempt Was Successful

I have been working on the problem sets at Project Euler for some time and have enjoyed the challenges presented. I am currently on Problem 59 which involves the process of encryption and decryption. ...
0
votes
1answer
222 views

Fallacy in Logic for Project Euler's Challenge 31

Perhaps I am misreading the question. For those of you who are unfamiliar with Project Euler's Problem 31, here is the problem: Investigating combinations of English currency denominations. ...
2
votes
1answer
145 views

Just Slightly Off for Project Euler #17

I posted this question a few hours ago but I think I deleted it! Really sorry... I am working on Project Euler Problem 17. Although there are other more obvious solutions, as a learning exercise, I ...
0
votes
3answers
157 views

c++ floating point exception

I did this for the Euler project problem 5, but for some reason I get a floating point exception: #include <iostream> using namespace std; int main () { long num; bool isnum = false; ...
0
votes
3answers
125 views

Why do I get different answers for these two algorithms in R?

This is quite literally the first problem in Project Euler. I created these two algorithms to solve it, but they each yield different answers. Basically, the job is to write a program that sums all ...
0
votes
5answers
115 views

Project Euler # 11, variables overflowing

Trying to solve project euler #11 and I keep getting a negative number for the two biggest products I'm outputting. Sort of at my wits end, and I figured by using long long data type I'd be safe, but ...
2
votes
2answers
225 views

Project Euler #4 using Haskell

I hope this works by just pasting and running it with "runghc euler4.hs 1000". Since I am having a hard time learning Haskell, can someone perhaps tell me how I could improve here? Especially all ...
2
votes
1answer
315 views

Euler 23 in C#: 0.2 seconds, in F#: 30.5 seconds. Why?

I am not really satisfied with my F# solution to this problem because I can't find a beautiful & fast solution, but that's not the issue here. The issue is, I translated the solution to C# for the ...
1
vote
5answers
355 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 ...
3
votes
3answers
98 views

python reading wrong type

I have a text file that contains lines of numbers. My program is trying to extract the lines of code and put them in a list, with each list being composed of the numbers that make up that line in the ...
0
votes
1answer
270 views

#12 Project Euler: Find the first triangle number with over 500 divisors

So I tried working out a solution to this problem, but my program is acting very strange. #include <iostream> using namespace std; int triangle_numbers(int n, int meh = 0) { int count = 0; ...
3
votes
7answers
485 views

Project Euler #1 using Haskell

import Data.Set euler :: Int euler = sum [ x | x <- nums ] where nums = Data.Set.toList (Data.Set.union (Data.Set.fromList [3,6..999]) ...
2
votes
5answers
172 views

How does this C# code work out the answer?

I have solved the project Euler problem 16 but discovered this rather novel approach but I cannot get my head around the technique employed (from http://www.mathblog.dk/project-euler-16/): int ...
5
votes
2answers
277 views

Caching in Haskell and explicit parallelism

I'm currently trying to optimize my solution to problem 14 at Projet Euler. I really enjoy Haskell and I think it's a very good fit for these kind of problems, here's three different solutions I've ...
0
votes
3answers
449 views

I'm trying to traverse through a 20x20 grid and calculate products, but I keep getting incorrect results. Can you help spot my error(s)?

This is problem 11 on Project Euler. It gives a 20x20 grid of numbers and asks: What is the greatest product of four adjacent numbers in any direction (up, down, left, right, or diagonally) in the ...
7
votes
1answer
430 views

Combine Two LIsts in Unique Way in Python

I am working on Project Euler problem 5 and am using the following: def findLCM(k): start=time.time() primes=[2,3,5,7,11,13,17,19,23] factors=[] for factor in range(2,k): if factor in primes: ...
0
votes
4answers
136 views

xrange generating strings? I don't get it

For some reason, the x variable in the first for... loop changes from int to str after a single iteration through the code. I'm baffled as to why that must be, but each time I run this script, my set ...
2
votes
1answer
166 views

Is this memoization working properly?

I'm have been working on solving Project Euler #14 for a while now in Haskell, but for some reason, I'm unable to get it working. I solved the problem using Groovy a while ago, and I think I'm using ...
1
vote
2answers
234 views

Calling functions prefix vs. infix in Haskell

I've been wanting to learn Haskell, so recently I started working through the ProjectEuler problems. While writing the following factoring code I noticed that calling (/ n) returns a Float while (n ...
0
votes
2answers
154 views

Multi-threading a procedural algorithm

I was working on Project Euler #22, and got my solution in about 9.6ms. Here's what I have: #import <Foundation/Foundation.h> NSUInteger valueOfName(NSString *name) { NSUInteger sum = 0; ...
2
votes
5answers
541 views

Prime Sieve in Haskell

I'm very new to Haskell and I'm just trying to find the sum of the first 2 million primes. I'm trying to generate the primes using a sieve (I think the sieve of Eratosthenes?), but it's really really ...
9
votes
4answers
548 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] ...
2
votes
1answer
175 views

Python partitioning function needs optimization

While researching for a project euler exercise (#78), I've learned that in order to partition a number you can create a power series. From that series you can expand and use the terms coefficient to ...
2
votes
5answers
101 views

Project Euler no. 2

I took many stabs at it and I can't seem to figure out what I am doing wrong. That is one of my most recent attempts at a solution. I know the correct answer from other sources is 4613732. /* * ...
1
vote
1answer
97 views

Large runtime difference between two solutions: Poject Euler #14

I solved Project Euler #14 using the following code: import time start_time = time.time() def collatz_problem(n): count = 0 while n!=1: if n%2==0: n = n/2 ...
5
votes
2answers
125 views

Pythonic way to combine four try/except clauses which deal with different variables?

I'm trying to hone and simplify the python that I write. I have this working solution for Project Euler's problem 11 (find the greatest product of 4-in-a-row numbers in a 20x20 grid). My main gripe ...
5
votes
5answers
222 views

Writing shorter, readable, pythonic code

I'm trying to produce shorter, more pythonic, readable python. And I have this working solution for Project Euler's problem 8 (find the greatest product of 5 sequential digits in a 1000 digit number). ...
2
votes
3answers
261 views

Analysing the runtime efficiency of a Haskell function

I have the following solution in Haskell to Problem 3: isPrime :: Integer -> Bool isPrime p = (divisors p) == [1, p] divisors :: Integer -> [Integer] divisors n = [d | d <- [1..n], n `mod` ...
1
vote
2answers
100 views

Add Output of Integers in C++?

I am working on Project Euler, the first problem, and I've gotten this program to output the numbers I need, but I cannot figure out how to take the outputted numbers and add them together. Here's ...
0
votes
1answer
106 views

Project Euler Number Nine with C++

I wrote this, but when running it, the console just sits at "Running..." and won't really do anything, at least that I can see. I am kind of at a loss here as I can't think of anything else to do. ...
2
votes
3answers
254 views

Faster modulo or equality checking in R (or good ways to vectorize)

I've been running through Project Euler trying to write programs that are computationally efficient. Consider problem 1: http://projecteuler.net/problem=1. I've upped the range from 1000 to 10,000,000 ...
0
votes
2answers
156 views

Project Euler 4

I have written the following code and put a lot of time into it. But there is just something intrinsically wrong with it, if someone could kindly direct me in making it more efficient, I would be ...
2
votes
1answer
256 views

Algorithm slowness for Project Euler #20

Here is the problem I am trying to solve: http://projecteuler.net/problem=20 (find the sum of the digits in 100!) I am using Lua, which only has double as a number type, so I had to approach this ...

1 3 4 5 6 7 17