Difference between revisions of "Comparator Assignment"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
+ | =Group Assignment= | ||
+ | This is a group assignment. | ||
=Background= | =Background= | ||
[https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html Comparator<T>] | [https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html Comparator<T>] |
Revision as of 17:17, 2 November 2021
Contents
Group Assignment
This is a group assignment.
Background
Code To Implement
CompareUtils
min
public static <E> Optional<E> min(E[] array, Comparator<E> comparator)
CompareApps
closestTo
public static Optional<Integer> closestTo(Integer[] values, int target)
youngest
public static Optional<HockeyPlayer> youngest(HockeyPlayer[] players)
mostPoints
public static Optional<HockeyPlayer> mostPoints(HockeyPlayer[] players)