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
Write a generic method myRepl that given an integer and a value of type
returns a list of length initialized with namely all elements are equal to
No loops, recursion permitted in the following exercises You can write and use
auxiliary functions also without loopsrecursion You can use the map, filter, foldL,
flatmap that you have written already.
Exercise
Write a function sumodd that given a list of integers computes the sum of the values
that are odd. Use foldleft,filter
Exercise
Write a function repl that given a list and a integer returns a list containing the
elements of replicated times. Use flatmap, myRepl
Exercise
Write a function totallength that given a list of strings computes the sum of the
lengths of the strings starting with the character Use map, filter, foldL
Exercise
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
Write a function countVowelPali that given a list of strings returns the total number
of vowels in strings that are palindromes. For example,
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
