Tagged Questions

Project Euler is a collection of mathematical programming problems of varying difficulty.

learn more… | top users | synonyms

230
votes
28answers
50k 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 ...
77
votes
16answers
8k views

Websites like projecteuler.net

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: ...
62
votes
6answers
13k 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 ...
57
votes
17answers
8k 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: ...
32
votes
8answers
2k 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 ...
28
votes
12answers
4k views

What is your favorite Project Euler question?

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, ...
21
votes
7answers
3k views

Project Euler for programmers? [closed]

Duplicate: Websites like projecteuler.net I really like the Project Euler website but its emphasis seems to be more on math than programming. While solutions are given in code, the most ...
20
votes
7answers
5k views

How do I break out of a loop in Scala?

For Problem 4 of Project Euler How do I break out a loop? var largest=0 for(i<-999 to 1 by -1) { for (j<-i to 1 by -1) { val product=i*j if (largest>product) // I want to break out ...
20
votes
5answers
4k 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?
19
votes
11answers
8k 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.
18
votes
4answers
1k 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 ...
17
votes
6answers
1k 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 ...
14
votes
5answers
647 views

Why is filter in front of foldLeft slow? (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 ...
14
votes
4answers
606 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 ...
14
votes
2answers
513 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
14answers
2k 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. ...
14
votes
5answers
1k 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 ...
14
votes
7answers
8k 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 ...
14
votes
16answers
4k 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, ...
13
votes
4answers
4k views

Beginner practical programming problems?

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 ...
12
votes
12answers
2k 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 ...
12
votes
11answers
15k 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 ...
12
votes
8answers
2k 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 ...
11
votes
3answers
203 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. ...
11
votes
4answers
483 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 ...
11
votes
4answers
344 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
10answers
1k views

What do you think about using the Project Euler website as a candidate profiling tool?

I've read a thread around here about people using FizzBuzz to filter out completely clueless candidates for programming positions. To be honest, I find it hard to believe many candidates won't pass ...
10
votes
5answers
277 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
11answers
2k 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 ...
10
votes
3answers
3k 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 ...
10
votes
12answers
1k 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
10answers
7k 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
9answers
1k 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 ...
9
votes
6answers
199 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 ...
9
votes
1answer
850 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 ...
9
votes
3answers
330 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) ...
9
votes
6answers
948 views

Python vs PHP speed

I want to solve a problem from Project Euler (BTW, problem 25), and I found a solution in Python: fibonacci = 1 old1 = 0 old2 = 1 limit = 1000 i = 1 while len(str(fibonacci)) < limit: ...
9
votes
3answers
3k 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
4answers
3k views

Finding Integers With A Certain Property - Project Euler Problem 221

I've become very addicted to Project Euler recently and am trying to do this one next! I've started some analysis on it and have reduced the problem down substantially already. Here's my working: ...
8
votes
3answers
166 views

Haskell arrays vs lists

I'm playing with Haskell and Project Euler's 23rd problem. After solving it with lists I went here where I saw some array work. This solution was much faster then mine. So here's the question. When ...
8
votes
4answers
739 views

Project Euler #14 and memoization in Clojure

As a neophyte clojurian, it was recommended to me that I go through the Project Euler problems as a way to learn the language. Its definitely a great way to improve your skills and gain confidence. I ...
8
votes
8answers
4k 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 ...
8
votes
8answers
2k 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 ...
8
votes
15answers
5k 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 ...
7
votes
2answers
179 views

Project Euler for SQL?

I've used Project Euler for practice every time I started out learning a new programming language. Now I'm trying to grok SQL, and Project Euler doesn't quite fit the bill. Can you recommend a ...
7
votes
2answers
114 views

Is variable allocation really expensive in Ruby, or does it optimize chained string methods?

I have the following method that I wrote for Project Euler - Problem 36. All it does is add up all the numbers less than 1,000,000 that are palindromes in both base 10 and base 2. def problem_36 ...
7
votes
6answers
993 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 ...
7
votes
3answers
576 views

Need help optimizing solution for Project Euler problem #12

I've been having my fun with Project Euler challenges again and I've noticed that my solution for number 12 is one of my slowest at ~593.275 ms per runthrough. This is second to my solution for number ...
7
votes
9answers
830 views

I've heard that some “break”s aren't bad practice. What about this one?

I have often heard that using breaks in Java is considered bad practice, but after reading some threads on Stack Overflow, I've seen otherwise. Many say that it is acceptable in certain cases. I'm a ...
7
votes
3answers
383 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 ...

1 2 3 4 5 10