Write a class LinearSearcher that includes a function
search() that takes two parameters--a list of integers, and
an integer to search for--and returns the position (index) of the number
in the list, or a value of None if the number is not on the
list.