Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using F#, given function is sum_some : int option list -> int : let rec sum_some xs = match xs with | None::xs -> sum_some

Using F#, given function is sum_some : int option list -> int:

let rec sum_some xs = match xs with | None::xs -> sum_some xs | Some x::xs -> x + sum_some xs | [] -> 0

Rewrite the following function using:

a) List.fold by filling in the ... in

let sum_some2 xs =
List.fold (fun s o ->
match o with
...) 0 xs

b) List.fold and List.map by filling in the ... in

let sum_some3 xs =
Let f o = ...
List.fold (+) 0 (List.map f xs)

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

Oracle PL/SQL Programming Database Management Systems

Authors: Steven Feuerstein

1st Edition

978-1565921429

More Books

Students also viewed these Databases questions

Question

The organizations culture and politics

Answered: 1 week ago