Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please Do this inOCAML language andtry tocompletetheprogram fully and without errors (Don't waste my answer with Wrong or inappropriate answers and it will be reported).

Please Do this inOCAML language andtry tocompletetheprogram fully and without errors (Don't waste my answer with Wrong or inappropriate answers and it will be reported).

Problem 4:Write maxrun, a function which returns the length of the longest sublist of negative or non-negative numbers and a list of absolute values of the original list elements. Ensure that this list is in the same order.

To report multiple outputs, use a record. Well define this particular output record as run_output:

type run_output =

{ length : int;

entries : int list;

}

Template:

let maxrun (l:int list) : run_output =

(** YOUR CODE HERE **)

Sample Unit Test

let out = moveNeg [8; -5; 3; 0; 10; -4] in

if out.length = 3

&& out.entries = [8; 5; 3; 0; 10; 4]

then print_string "YAY" else raise (Failure "OOPS");

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Combinatorial Testing In Cloud Computing

Authors: Wei-Tek Tsai ,Guanqiu Qi

1st Edition

9811044805, 978-9811044809

More Books

Students also viewed these Programming questions

Question

Why does control matrix custom-tailored for each business process?

Answered: 1 week ago