Skip to content

Latest commit

 

History

History
13 lines (13 loc) · 180 Bytes

README.md

File metadata and controls

13 lines (13 loc) · 180 Bytes

GUN-CODE

A code for the winner n=list(map(str,input().split())) l=n l1=l[::2] while(len(l1)!=1): if(l1[-1]==l[-1]): l=l1 l1=l1[1::2] else: l=l1 l1=l1[::2] print(l1)