Question: Exercise 1 Write a generic method myRepl that given an integer n and a value v ( of type T ) returns a list of

Exercise 1
Write a generic method myRepl that given an integer n and a value v(of type T)
returns a list of length n initialized with v, namely all elements are equal to v.
No loops, recursion permitted in the following exercises 2--6. You can write and use
auxiliary functions also without loops/recursion. You can use the map, filter, foldL,
flatmap that you have written already.
Exercise 2
Write a function sumodd that given a list of integers computes the sum of the values
that are odd. (Use foldleft,filter)
Exercise 3
Write a function repl that given a list xs and a integer n returns a list containing the
elements of x replicated n times. ( Use flatmap, myRepl)
Exercise 4
Write a function totallength that given a list of strings xs computes the sum of the
lengths of the strings starting with the character 'A'.( Use map, filter, foldL )
Exercise 5
Write a function titlecase that given a list of strings converts it to titlecase by
uppercasing the letters of every word that starts with an "a".
Exercise 6
Write a function countVowelPali that given a list of strings x returns the total number
of vowels in strings that are palindromes. For example,
 Exercise 1 Write a generic method myRepl that given an integer

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!