In this problem you must implement several functions on lists in Python.
Scoring
Each function scores 12 points and the sample 4.
>>> myLength([1,3,6,1]) 4 >>> myMaximum([4,3,1,5,4,5,2]) 5 >>> myMaximum(['josep', 'jordi', 'albert']) josep >>> average([1,2,3]) 2.0 >>> buildPalindrome(['pa','amb','oli']) ['oli', 'amb', 'pa', 'pa', 'amb', 'oli'] >>> flatten([[2,6],[[8,1,4],[3,'uau']],[[],[1]],[[]]]) [2, 6, 8, 1, 4, 3, 'uau', 1] >>> remove([1,4,5,3,4,5,1,2,7,4,2], [2,4]) [1, 5, 3, 5, 1, 7] >>> oddsNevens([1,4,5,3,4,5,1,2,7,4,2]) ([1, 5, 3, 5, 1, 7], [4, 4, 2, 4, 2]) >>> primeDivisors(255) [3, 5, 17]