learn-you-a-haskell-exercises
learn-you-a-haskell-exercises copied to clipboard
Shorten the solution of combineLists in ch11
combineLists other Empty = other
isn't needed: in case the second list is empty, it'll be pattern matched against combineLists (Value v rest) other
and go on in this way until the first List is Empty.