Determine if a word is an isogram — no letter appears more than once.
Constraints
Example
>>> is_isogram('isogram')
True
>>> is_isogram('alpha')
False
>>> is_isogram('Alphabet')
False
>>> is_isogram('six-year-old')
True
>>> is_isogram('')
True
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints