Find the Runner-Up Score!
January 16, 2024
Given the participants' score sheet for your University Sports Day, you are required to find the runner-up score. You are given scores. Store them in a list and find the score of the runner-up.
Sample Input 0
5
2 3 6 6 5
Sample Output 0
5
if __name__ == '__main__':
n = int(input())
arr = map(int, input().split())
# Remove duplicates by converting the array to a set
unique = set(arr)
# Sort the unique numbers in descending order
sorted_numbers = sorted(unique, reverse=True)
second_largest_unique = sorted_numbers[1]
print(second_largest_unique)
Last updated