You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AIM : Given an array of n integers, find the third largest element. All the elements in the array are distinct integers.
Input: arr[] = {1, 14, 2, 16, 10, 20}
Output: The third Largest element is 14
Explanation: Largest element is 20, second largest element is 16
and third largest element is 14
The text was updated successfully, but these errors were encountered:
AIM : Given an array of n integers, find the third largest element. All the elements in the array are distinct integers.
Input: arr[] = {1, 14, 2, 16, 10, 20}
Output: The third Largest element is 14
Explanation: Largest element is 20, second largest element is 16
and third largest element is 14
The text was updated successfully, but these errors were encountered: