0
votes
1answer
127 views
Project Euler #75: ways to optimize the algorithm
I'm looking at ways to optimize my algorithm for solving Project Euler #75, two things I have done so far are,
Only check L with even values as this can be easily proved.
Store L values that have …
0
votes
1answer
41 views
Returning a decyphered string as part of tuple in Haskell
Hi
For project euler 59, I came up with this to return a list of tuples containing the decyphered string and the key used (and yes I know about Data.Bits):
module XOR where
import Data.List
import …
4
votes
4answers
242 views
Fibonacci Sequence Algorithm
I am attempting to find the first number in the fibbonacci sequence to contain N digits (N being somewhere in the range of 500 and 2000). I attempt to do this with the following code:
BigInteger num …
1
vote
3answers
120 views
Lagged Fibonacci Rng For Project Euler #149
Hey guys, this is very likely a total brain fart on my part but I was hoping someone could have a look at the following statement which describes how to set up the lagged fibonacci rng:
First, …
0
votes
2answers
85 views
A List processing problem in F#
I am trying to do problem 12 in Project Euler.
numDivisor64 is to calculate number of divisors.
I wrote this F# code:
let problem12 =
{1L..300000L} |> Seq.map (fun x->x*(x+1L)/2L) |> …
1
vote
2answers
130 views
Implementing a factorisation method in Haskell
Hi
I am doing question 266 at project euler and after a bit of searching, found this method of quickly finding the factors of a number. What you do is find all the permutations of the prime factors …
0
votes
3answers
61 views
Handling numbers larger than Long in VBA
I am Currently trying to write some code in VBA to solve a problem from Project Euler. I have been trying to answer a question that requires you to find primes that can be divided into a number that …
1
vote
3answers
119 views
List construction in Haskell
Hi
I have the following recursive function for project euler question no. 74:
chain n | n `elem` xs = length xs
| otherwise = (chain (sumFac n)) : xs
fac n = foldl (*) 1 $ enumFromTo 1 n
sumFac …
2
votes
3answers
104 views
Reliable cube root in Haskell
Hi
I am doing question 62 at project euler and came up with the following to test whether a number is cubic:
isInt x = x == fromInteger (round x)
isCube x= isInt $ x**(1/3)
But due to floating …
1
vote
1answer
84 views
Project Euler: please help me understand #106
I have solved #103 and #105, but I have a hard time understanding #106, specifically where does the number 25 come from?
If we are talking about two disjoint subsets with equal number of elements, …
1
vote
4answers
139 views
Can’t quite get Project Euler problem #2 figured out.
I'm trying to learn the basics of C++ by going through some Project Euler problems. I've made it to...#2.
Each new term in the Fibonacci
sequence is generated by adding the
previous two terms. …
2
votes
4answers
144 views
What is wrong with my “digit finder” in python?
I am learning python through the Project Euler problems. For problem 40 I wrote this code:
import math
i = 1
counter = 0
while counter <= 1000000:
MMM = int(math.log(i, 10)) + 1
counter …
2
votes
1answer
108 views
List comprehension won’t give correct result in Haskell
Hi
I am doing project euler question 136, and came up with the following to test the example given:
module Main where
import Data.List
unsum x y z n = (y > 0) && (z > 0) && …
1
vote
5answers
217 views
Tips for Project Euler Problem #78
This is the problem in question: Problem #78
This is driving me crazy. I've been working on this for a few hours now and I've been able to reduce the complexity of finding the number of ways to stack …
0
votes
4answers
157 views
Project Euler #10 Conundrum
So after pulling my hair out for 30 minutes, I have decided to come to SO for some help on Project Euler #10:
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the …
