In this problem you have to define some functions about lists in Haskell.
Scoring
Esch function scores 12 points and the sample 4.
Input
myMaximum [4,3,1,5,4,5,2] average [1,2,3] buildPalindrome [2,4,6] flatten [[2,6],[8,1,4],[],[1]] remove [1,4,5,3,4,5,1,2,7,4,2] [2,4] myLength [1,3..10] oddsNevens [1,4,5,3,4,5,1,2,7,4,2] primeDivisors 255
Output
5 2.0 [6,4,2,2,4,6] [2,6,8,1,4,1] [1,5,3,5,1,7] 5 ([1,5,3,5,1,7],[4,4,2,4,2]) [3,5,17]