0
votes
1answer
53 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
127 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 …
1
vote
4answers
112 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, given the set 2 3 3 …
1
vote
5answers
162 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
136 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
83 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 …
9
votes
10answers
2k views
How do I check if a number is a palindrome?
Any language. Any algorithm (except making the number a string and then reversing the string).
Also, I actually have to do this, and I'll be posting my solution too.
1
vote
3answers
84 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
46 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
votes
2answers
128 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 tell me what's wrong …
1
vote
3answers
125 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*(2*n -1)
p7 n = …
5
votes
2answers
142 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 thought my …
0
votes
2answers
78 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
4answers
103 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.142857142857'
0
votes
4answers
117 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.out.println(z + …
