Question: WRITE IN SML 1.Write a function named split that takes as an argument a two-tuple that consists of a list and a pivot value), and
WRITE IN SML
1.Write a function named split that takes as an argument a two-tuple that consists of a list and a pivot value), and returns a two-tuple that contains two lists. The first list is composed of all the elements in the original list that are strictly less than the pivot value. The second list returned is composed of all the elements that are greater than or equal to the pivot value. The type of this function is fn : int list * int -> int list * int list
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
