mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-07 01:15:02 -06:00
'init'
This commit is contained in:
2
python/isogram/isogram.py
Normal file
2
python/isogram/isogram.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def is_isogram(string):
|
||||
return len(list(set(string))) == len(string)
|
||||
Reference in New Issue
Block a user