Can\'t figure out how to merge two lists in the following way in Haskell:
INPUT: [1,2,3,4,5] [11,12,13,14] OUTPUT: [1,11,2,12,3,13,4,14,5]
-- ++ pp [] [] = [] pp [] (h:t) = h:pp [] t pp (h:t) [] = h:pp t [] pp (h:t) (a:b) = h : pp t (a:b)