service/searching/findKthLargest/find_kth_largest library

Functions

findKthLargest<T extends Comparable>(List<T> list, int k) → T
Generic reusable function to find the k-th largest element in a List
main() → void