1
vote
3answers
97 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
71 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
121 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
52 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
1answer
79 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
3answers
112 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
97 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
4answers
135 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
1answer
106 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) && …
2
votes
4answers
142 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 …
0
votes
4answers
154 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 …
-1
votes
3answers
102 views
How to left/right truncate numbers without strings (Euler #37)
As stated in problem 37 at Project Euler:
The number 3797 has an interesting property. Being prime itself, it is possible to continuously remove digits from left to right, and remain prime at each …
1
vote
3answers
90 views
How to recursively compare the digits in a number in Haskell
Hi
I am doing problem 112 on Project Euler and came up with the following to test the example case (I'll change the number in answer to 0.99 to get the real answer):
isIncre x | x == 99 = False
…
1
vote
1answer
49 views
How to rearrange this function to return the extended list in Haskell
Hi
I am doing problem 68 at project euler and came up with the following code in Haskell to return the list of numbers which fit the (given) solution:
lists = [n|n<- permutations [1..6] , ring n …
1
vote
5answers
191 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 …
