Question: Please finish the TODO sections for the following java code. see Main for what each function needs to do please import java.util.List; import java.util.function.Function; import

Please finish the TODO sections for the following java code. see Main for what each function needs to do please

import java.util.List; import java.util.function.Function; import java.util.function.BiFunction; import java.util.function.Predicate; import java.util.Comparator;

public class secondAssignment { static List map(Iterable l, Function f) {

//TODO return null; }

static V foldL(V e, Iterablel, BiFunction f){

//TODO return null; }

static V foldR(V e, Iterablel, BiFunction f){ return null; }

public static void main(String[] args) { // (1) Use map to implement the following behavior (described in Python). i.e given a List create a List of the hashes of the objects. // names = ['Mary', 'Isla', 'Sam'] // for i in range(len(names)): // names[i] = hash(names[i]) // (2) Use foldL to calculate the sum of a list of integers. // i.e write a method: int sum(List l) // (3) Use foldR to concatenate a list of strings i.e write a method // String s (List l)

//TODO }

}

class Person{ final int salary; final String name; Person(int salary, String name){ this.salary = salary; this.name = name; } int getSalary() { return salary; } String name() { return name;} }

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!