0
votes
4answers
80 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 …
1
vote
8answers
216 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
2answers
91 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
101 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
103 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
4answers
100 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 …
1
vote
7answers
242 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
4answers
89 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 …
0
votes
1answer
59 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?
0
votes
1answer
112 views
How to make Haskell use another list depending on the previous answer in Haskell
Hi
I am doing project euler question 63 where I must find the amount of numbers that exist where:
x^(n) == y
Where n is the length of y.
It soon emerges that the results for th …
79
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
1answer
111 views
Project Euler Problem 2 in F#
I'm a bit stuck on the last step of getting the solution to problem 2 on Project Euler. This is the source I've gotten so far.
#light
module pe2 (* Project Euler Problem 2 so …
7
votes
3answers
171 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 stud …
0
votes
1answer
124 views
Optimisations for a series of functions in Haskell
Hi
I am trying to do problem 254 in project euler and arrived at this set of functions and refactor in Haskell:
f n = sum $ map fac (decToList n)
sf n = sum $ decToList (f n)
g …
0
votes
1answer
59 views
How to refactor this in J?
My newbie solution to Project Euler #1
+/((0=3|1+i.1000-1) +. (0=5|1+i.1000-1)) * (1+i.1000-1)
I know that this can be refactored, and transformed into a function, i don't know …
