public class NLargest
{
    /*
     * Returns an array containing the n largest values in nums,
     * sorted in ascending order.
     * Leaves the values in nums unchanged.
     * Precondition: nums.length >= n
     */
    public static int[] findNLargest(int[] nums, int n)
    {
        return null; // TODO implement
    }
}
