http://www.perlmonks.org?node_id=590138


in reply to Re^3: 99 Problems in Perl6
in thread 99 Problems in Perl6

Your Haskell compress unfortunately bottoms out on empty input. It's otherwise much better than the stateful Perl 6 version.

Replies are listed 'Best First'.
Re^5: 99 Problems in Perl6
by Ovid (Cardinal) on Dec 15, 2006 at 22:44 UTC

    Lest anyone think I'm a genius, I stole the Haskell code from here.

    Cheers,
    Ovid

    New address of my CGI Course.

      The "alternative solution" posted there doesn't suffer from the monomorphism restriction*, and thus does less to propagate the myth that one has to be a genius to write code in Haskell. It also works correctly with empty input :-)

      compress [] = [] compress [a] = [a] -- singleton list compress (x:y:xs) = (if x == y then [] else [x]) ++ compress (y:xs)
      *Something that, for the casual programmer, is quite technical but uninteresting, has a scary name, and a not-that-friendly error message.
        And indeed, you can do that in Perl too:
        multi compress () { () } multi compress ($a) { item $a } multi compress ($x, $y, *@xs) { $x xx ($x !=== $y), compress($y, |@xs) + } my @x = <a a a a b c c a a d e e e e>; say perl compress |@x;