Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please use Ocaml (* Write a function that sums 2 natrual numbers as represented by a list of integers between 0 and 9 where the

Please use Ocaml

(*

Write a function that sums 2 natrual numbers as represented by a list of integers between 0 and 9 where the head is the least signifigant digit.

Your function should be tail recursive

sum [4; 3; 2; 1] [1;0;1] = [5; 3; 3; 1]

sum [1] [9;9;9] = [0; 0; 0; 1]

sum [] [] = []

sum (nines 1000000) [1] does not stack overflow, when (nines 1000000) provides a list of 1000000 9s

*)

let rec sum (a : int list) (b : int list) : int list = failwith "unimplemented"

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

Students also viewed these Databases questions

Question

Explain the concept of shear force and bending moment in beams.

Answered: 1 week ago