Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

Step: 3

blur-text-image

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

Entity Alignment Concepts Recent Advances And Novel Approaches

Authors: Xiang Zhao ,Weixin Zeng ,Jiuyang Tang

1st Edition

9819942527, 978-9819942527

More Books

Students also viewed these Databases questions

Question

=+what about writing itself is health-promoting?

Answered: 1 week ago