Skip to main content

All Questions

Tagged with
1 vote
1 answer
115 views

Manacher Algorithm in Haskell

Please review the manacher algorithm in haskell. Find the longest Palindrome in a String. ...
presci's user avatar
  • 249
3 votes
1 answer
471 views

Find biggest palindrome which is the product of two 3-digit numbers

...
Pigna's user avatar
  • 163
2 votes
1 answer
687 views

Palidrome checker in haskell

I decided to avoid the trivial isPalindrome lst = lst == reverse lst and tried writing a method with pattern matching and recursion. ...
Caridorc's user avatar
  • 27.5k
3 votes
2 answers
248 views

Project Euler #4 in Haskell

Project Euler #4 asks: Find the largest palindrome made from the product of two 3-digit numbers. The code is as follows: ...
wei2912's user avatar
  • 1,233
0 votes
1 answer
165 views

Finding Largest Integer Palindrome within a Set

I've "solved" Project Euler Question 4 and I was wondering if I could make my answer more efficient (I'm using Project Euler to help me learn Haskell). The problem reads: Find the largest ...
Sleep Deprived Bulbasaur's user avatar
9 votes
2 answers
3k views

Palindrome check in Haskell

I am learning Haskell and I am doing 99 Haskell problems. There is a problem to check if a list if a palindrome. It's obvious solution is ...
daniil's user avatar
  • 163