README
First character that repeats
Find the first character that repeats in a String and return that character.
first_dup(‘tweet’) => ‘t’
first_dup(‘like’) => None
This is not the same as finding the character that repeats first. In that case, an input of ‘tweet’ would yield ‘e’.