8
votes
10answers
403 views
Project Euler #15
Hey everyone,
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
…
18
votes
13answers
754 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:
…
4
votes
4answers
308 views
PROJECT EULER #29
Well, after solving this problem by naive STL set,I was reading the forum entries,there I find this entry :
#include <iostream>
#include <cmath>
#define MAX 100
using namespace …
0
votes
3answers
70 views
Project Euler - Problem 8 - Help with understanding requirement
Hi All,
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 …
3
votes
8answers
369 views
Smallest number that is evenly divisible by all of the numbers from 1 to 20?
I did this problem [Project Euler problem 5], but very bad manner of programming, see the code in c++,
#include<iostream>
using namespace std;
// to find lowest divisble number till 20
int …
13
votes
5answers
210 views
No overflow exception for int in C#?
Hi,
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 …
5
votes
5answers
302 views
Project Euler - Problem 272 in C#
I am have difficulties solving problem 272 of Project Euler, which has the following statement.
For a positive number n, define C(n)
as the number of the integers x, for
which 1 < x < n …
1
vote
3answers
139 views
Python function returning None after recursion
I can't figure out why this python function returns None if it calls itself recursively.
It was part of my solution to a Project Euler problem. I have solved the problem in a better way anyhow, but …
3
votes
1answer
145 views
Tips to solve problem #41 of project euler
I'm trying to solve Problem 41of project Euler in Java, by counting the number from 99888888 to 80000000(which took very long time :( ), I got 98765431 as an answer, but I'm getting that answer not …
1
vote
3answers
125 views
Euler Project No. 2 with Python
Can somebody tell me why this should be wrong?
#Each new term in the Fibonacci sequence is generated
#by adding the previous two terms. By starting with 1 and 2,
#the first 10 terms will be:
#1, 2, …
103
votes
24answers
31k 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 …
1
vote
2answers
111 views
generating a binary tree from given data in python
i wanted to know how to read values from a list into a binary tree.
i have a triangle like this:
0
1 2
3 4 5
6 7 8 9
i have written a class node like this
class …
1
vote
2answers
103 views
What’s the style for immutable set and map in F#
I have just solved problem23 in Project Euler, in which I need a set to store all abundant numbers. F# has a immutable set, I can use Set.empty.Add(i) to create a new set containing number i. But I …
1
vote
2answers
107 views
Project Euler #101 - how to work around numpy polynomial overflow?
Project Euler #101
I just started learning Numpy and it so far looks pretty straightforward to me.
One thing I ran into is that when I evaluate the polynomial, the result is a int32, so an overflow …
4
votes
7answers
186 views
How to Code a Solution To Deal With Large Numbers?
I'm doing some Project Euler problems and most of the time, the computations involve large numbers beyond int, float, double etc.
Firstly, I know that I should be looking for more efficient ways of …
