Question: This needs to be written in F sharp programming language. Define a function vecadd to add two integer lists using map2 and add where let

This needs to be written in F sharp programming language.

Define a function vecadd to add two integer lists using map2 and add where let add x y = x + y;;

vecadd [1;2;3] [4;5;6];; val it : int list = [5;7;9]

Use:

let rec map2 f L1 L2 = match (L1,L2) with | ([], []) -> [] | (h1::t1, h2::t2) -> f h1 h2::map2 f t1 t2;;

Test method it needs to pass -

member this.VecAdd () = let actual = vecadd [1;2;3] [4;5;6] let expected = [5;7;9] Assert.AreEqual(expected, actual)

Incomplete Function -

let vecadd L1 L2 = []

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!