Find Lonely Element Find the only element in an array that only occurs once. If no element appear only once, just return False. lonely_element([1,1,33,4,55,55,33]) # > 4 lonely_element([1,2,3,4,5,6]) # > False