Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please finish the below function with the given functions in Ocaml: Given: et rec fold_left (f: 'y ->'x->'y) (y:'y) (l:'x list) : 'y = match
Please finish the below function with the given functions in Ocaml:
Given:
et rec fold_left (f: 'y ->'x->'y) (y:'y) (l:'x list) : 'y =
match l with
[] -> y
| a::b -> fold_left f (f y a) b
-
let rec fold_right (f : 'x->'y->'y) (y:'y) (l:'x list) : 'y =
match l with
[] -> y
| a::y' -> f a (fold_right f y y')
Do:
(* Partion list l around elt. Return a tuple consisting of all elements before elt and all elements after elt. *) let pivot (cmp : 'a->'a->bool) (elt :'a) (l:'a list) : 'a list * 'a list = (* TODO, replace ([],[]) *) ([], [])
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started