Additive primes: Difference between revisions

Content deleted Content added
→‎{{header|Haskell}}: added the simple solution
Hout (talk | contribs)
m →‎{{header|Haskell}}: Minor typo in preamble.
Line 743: Line 743:


=={{header|Haskell}}==
=={{header|Haskell}}==
Naive solution which doesn't relay on advanced number theoretic libraries.
Naive solution which doesn't rely on advanced number theoretic libraries.
<lang haskell>import Data.List (unfoldr)
<lang haskell>import Data.List (unfoldr)