We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Find the Runner-Up Score!
Find the Runner-Up Score!
Sort by
recency
|
8192 Discussions
|
Please Login in order to post a comment
sc = list(set(arr)) sc.sort(reverse=True) print(sc[1])
This is what I came up with.
Haha this works...must be a bug.
a=sorted(set(list(arr))) print(a[-2])
print (sorted(set(list(arr)), reverse=True)[1])