Find The Odd Int

Ruby

Given an array, find the int that appears an odd number of times.

There will always be only one integer that appears an odd number of times.

Create a method called find_it that accepts an array.

def find_it(seq) end
< >