Question: You are given the following function f :: [a] -> [a] -> [a] f [] [] = [] f (lys = f ys [] f
You are given the following function f :: [a] -> [a] -> [a] f [] [] = [] f (lys = f ys [] f (x:xs) ys = f xs (x:ys) Which of the following statements is true? f reverses a list. a The evaluation of f will always terminate on any arguments. The evaluation of f will terminate on some arguments. It is unknown whether f is partial. None of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
