1
vote
4answers
120 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 num …
4
votes
2answers
117 views
Euler Problem in Haskell — Can Someone Spot My Error
Hi all,
I'm trying my hand at Euler Problem 4 in Haskell. It asks for that largest palindrome formed by multiplying two three-digit numbers. The problem was simple enough, and I …
1
vote
3answers
117 views
Problem detecting cyclic numbers in Haskell
Hi
I am doing problem 61 at project Euler and came up with the following code (to test the case they give):
p3 n = n*(n+1) `div` 2
p4 n = n*n
p5 n = n*(3*n -1) `div` 2
p6 n = n*( …
-1
votes
2answers
120 views
Problem in project euler #32
Hi,
I'm trying to solve problem 32 of project euler in Java but I'm not getting the correct answer. I'm getting the answer of the following program as 48146. Could anyone please t …
0
votes
4answers
100 views
Euler #26, how to convert rational number to string with better precision?
I want to get 1/7 with better precision, but it got truncated. How can I get better precision when I convert a rational number? Thanks.
>>> str(1.0/7)[:50]
'0.14285714285 …
1
vote
8answers
257 views
What is Sum of Even Terms In Fibonacci (<4million)? [Large Value Datatype Confusion]
By starting with 1 and 2, the first 10 terms of Fibonacci Series will be:
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
Find the sum of all the even-valued terms in the sequence which …
0
votes
4answers
97 views
Project Euler #3 Java Solution Problem
class eulerThree {
public static void main(String[] args) {
double x = 600851475143d;
for (double z = 2; z*z <= x; z++) {
if (x%z == 0) {
System …
0
votes
2answers
76 views
How to refactor this in J?
Here is a different approach for the Project Euler #1 solution:
+/~.(3*i.>.1000%3),5*i.>.1000%5
How to refactor it?
83
votes
24answers
30k 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.s …
0
votes
2answers
104 views
Finding palindromic numbers in Ruby
So, I'm doing Project Euler to solidify my Ruby skills. I'm on problem #4, which reads:
A palindromic number reads the same
both ways. The largest palindrome made
from the …
0
votes
1answer
105 views
Finding if two numbers have the same digit and then remove them from in the original number in Haskell
Hi
I am doing project euler question 33 and have divised a refactor to solve it but I can't think of how to remove the digit if it is the same across both x and y.
I got this far:
…
1
vote
2answers
106 views
Intermediate lists in Haskell
Hi
I am doing Project Euler question 55 on Lychrel numbers where the aim is to find the number of Lychrel numbers below 10,000 within 50 iterations. I came up with this:
revAdd n …
1
vote
7answers
303 views
Finding Fibonacci sequence in C#. [Project Euler Exercise]
Hi there, I'm having some trouble with this problem in Project Euler.
Here's what the question asks:
Each new term in the Fibonacci sequence is generated by adding the previous t …
0
votes
3answers
122 views
Problems with java.math.BigInteger
I have the following code at the head of a method:
BigInteger foo = BigInteger.valueOf(0);
BigInteger triNum = BigInteger.valueOf(0);
//set min value to 1*2*3*4*5*...*199*200.
Bi …
1
vote
4answers
104 views
How can I maximally partition a set?
I'm trying to solve one of the Project Euler problems. As a consequence, I need an algorithm that will help me find all possible partitions of a set, in any order.
For instance, g …
