Problem
Write a Lisp function find-member that takes as input an object and a list. The function returns nil if there is no instance of the object in the list. Otherwise, find-member returns all instances of the object in the list along with the frequency:
(find-member `w `(b w d c e w a g)) --> (W W 2).