Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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