Haskell Programming Write a function, mySplit, which takes a predicate and a lis
ID: 3666560 • Letter: H
Question
Haskell Programming
Write a function, mySplit, which takes a predicate and a list and returns a pair of lists, the first containing elements for which the predicate reports true, and the second containing elements for which the predicate reports false. Write a function, myLessThan which takes an integer, and returns a predicate (over a second integer) which reports whether the second integer is less than the first one. Write a function, myConcat, which concatenates two lists into a single list of all the elements, in order. [Do not use existing function for appending lists]Explanation / Answer
problem 4:
problem 6: