Implement a function that returns the index of a value to the list if it exists. Otherwise return -1 if there is no value. If the same value exists more than once on the list then the first value is deleted from the bottom.
public static intfindFromLast (List <Double> l, double value ) {///…}