Tagged Questions
0
votes
1answer
127 views
Haskell Time Issue
it is my second question about haskell and i thought my algorhythm is not bad and it gives faster results in c++ and python and there is some problem at haskell it cant give me 10^25 (maybe it gives ...
2
votes
2answers
271 views
My attempt at Project Euler #92 is too slow
I'm trying to solve Project Euler problem #92 with Haskell. I started learning Haskell recently. It's the first Project Euler problem I've tried to solve with Haskell, but my piece of code doesn't ...
5
votes
2answers
277 views
Caching in Haskell and explicit parallelism
I'm currently trying to optimize my solution to problem 14 at Projet Euler.
I really enjoy Haskell and I think it's a very good fit for these kind of problems, here's three different solutions I've ...
-4
votes
1answer
87 views
How to alter these functions so that they recursively find the solution
This is a question about Project Euler problem #67. (Find the maximum path down a triangle) I know it may be in bad taste to ask for help on these.
I have these functions:
def ...
15
votes
4answers
2k views
Dynamic programming in the functional paradigm
I'm looking at Problem thirty one on Project Euler, which asks, how many different ways are there of making £2 using any number of coins of 1p, 2p, 5p, 10p, 20p, 50p, £1 (100p) and £2 (200p).
There ...
1
vote
1answer
222 views
Does this “filtering” function exist? What would be a good name for such a function?
I'm solving a Project Euler problem which involves all the n-digit numbers with a certain property. It seems that the easiest way to get them might be to get a list of all the numbers with that ...
1
vote
3answers
262 views
Looking for critique of my Erlang program
I'm new to Erlang and pretty new to functional programming in general.
I've been having a really good time with Erlang so far (even though Erlang's punctuation has had me trip up a few times ;)), ...
2
votes
1answer
260 views
Haskell doubt: how to transform a Matrix represented as: [String] to a Matrix Represented as [[Int]]?
Im trying to solve Problem 11 of Project Euler in haskell. I almost did it, but right now im
stuck, i want to transform a Matrix represented as [String] to a Matrix represented as [[Int]].
I "drawed" ...
7
votes
4answers
691 views
Multiplying numbers on horizontal, vertial, and diagonal lines
I'm currently working on a project Euler problem (www.projecteuler.net) for fun but have hit a stumbling block. One of the problem provides a 20x20 grid of numbers and asks for the greatest product ...
1
vote
3answers
408 views
What's the style for immutable set and map in F#
I have just solved problem23 in Project Euler, in which I need a set to store all abundant numbers. F# has a immutable set, I can use Set.empty.Add(i) to create a new set containing number i. But I ...
0
votes
2answers
260 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
5answers
1k views
Project Euler Problem 27 in F#
I've been trying to work my way through Problem 27 of Project Euler, but this one seems to be stumping me. Firstly, the code is taking far too long to run (a couple of minutes maybe, on my machine, ...
