-->

Find the Runner-Up Score! in Python - Hacker Rank Solution | Apna Hindi Tech







Hello Friends 

рдЖрдЬ рд╣рдо рдЖрдкрдХो Hacker Rank рдкрд░ Find the Runner-Up Score! in Python рдХा рдХंрдк्рд▓ीрдЯ рд╕ॉрд▓्рдпूрд╢рди рдмрддाрдПंрдЧे рд╡рд╣ рднी рдЖрд╕ाрди рднाрд╖ा рдоें। рддो рджोрд╕्рддों рдЪрд▓िрдП рдЬाрдирддे рд╣ैं рд╕ॉрд▓्рдпूрд╢рди ।


Python Tutotial :- Python Hindi Tutorial



Problem :-Find the Runner-Up Score! in Python - Hacker Rank Solution


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.


Input Format :-

The first line contains . The second line contains an array   of  integers each separated by a space.



Constraints :-



Output Format :-

Print the runner-up score. 



Sample Input 0 :-

5
2 3 6 6 5




Sample Output 0 :-

5




Explanation 0 :-

Given list is . The maximum score is , second maximum is . Hence, we print  as the runner-up score.



Solution :-

if __name__ == '__main__':
    n = int(input())
    arr = list(map(intinput().split()))
    b=set(arr)
    b.remove(max(b))
    print(max(b))


Video Tutorial :-





DISCLAIMER:-
The above hole problem statement is given by hackerrank.com but the solution is generated by the  Apna Hindi Tech authority if any of the query regarding this post or website fill the following contact form.

......Thank YouЁЯШК......

рдпрд╣ рднी рдкрдв़ें

Post a Comment