Question: Define the function fromMtoN : int -> int -> (int list) in OCaml that behaves as follows: Given the positive numbers m and n, it

 Define the function fromMtoN : int -> int -> (int list)

Define the function fromMtoN : int -> int -> (int list) in OCaml that behaves as follows: Given the positive numbers m and n, it produces a list of numbers from m down to n. If m is smaller than n, then the result should be the empty list. Some example outputs for the function # fromMtoN 7 3;; -: int list = [7; 6; 5; 4; 3] # fromMtoN 3 3;; -: int list = [3] # fromMtoN 3 7;; -: int list = []

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!