Question: q2: Write a public static method named topK that takes and ArrayList of Integers and an * int (k) as a parameters and returns an

q2: Write a public static method named topK that takes and ArrayList of Integers and an * int (k) as a parameters and returns an ArrayList of Integers. The returned ArrayList will *contain the top k largest values from the input ArrayList in order without duplicates. Example: If the input ArrayList contains [7,12,2,3,9,12,-4,7,7] and the int input is 3 *this method will return [12,9,7]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
