mirror of
https://github.com/Xevion/exercism.git
synced 2026-02-01 06:24:14 -06:00
3 lines
73 B
Python
3 lines
73 B
Python
def is_isogram(string):
|
|
return len(list(set(string))) == len(string)
|