Skip to main content

UVa 10928 - My Dear Neighbours


This is simple in-degree counting problem. I decided to use Python 3 for this question due to the split method available in strings.




Code

Language:Python 3

t=int(input())
while t!=0:
 li =[]
 t=t-1
 n=int(input())
 mini=n
 li=list()
 for i in range (n):
  stri=input()
  nos=len(stri.strip().split(" "))
  #print ("Got ", nos)
  if nos < mini:
   mini=nos
   li=list()
   li.append(i+1)
  elif nos == mini:
   li.append(i+1)
 print(*li, sep=' ')
 if t!=0:
  input()

Comments

Popular posts from this blog