Question: Define the function everyodd : ('a list) -> ('a list) in OCaml that takes a list as input and produces from it a list that

Define the function everyodd : ('a list) -> ('a list) in OCaml that takes a list as input and produces from it a list that contains all the elements in odd positions in the input list. Some example outputs for the function are the following: # everyOdd [];; -: 'a list = [] # everyOdd [1; 2; 3; 4];; -: int list = [1; 3] # everyOdd [1; 2; 3];; -: int list = [1; 3] # everyodd ["a"; "string"; "list"; "is"; "also"; "okay"]}} -: string list = ["a"; "list"; "also"]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
