Блог пользователя Sahilamin219

Автор Sahilamin219, история, 4 года назад, По-английски

I was doing this question asked in recent HackFest in Hackerrank . I know its too simple but anyhow i m not able to score all 20 points.

my code

Please help ..i m not able to find the solution.

  • Проголосовать: нравится
  • +3
  • Проголосовать: не нравится

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Hey!
So here would be my solution to the problem:

def whoIsTheWinner(arr):
  n = len(arr)
  N = len(set(arr))
  if (n != N) and (n % 2 == 0):
    return "Second"
  else:
    return "First"