0
Can anyone solved isogram detector ?
In Coad Coach section
3 ответов
+ 3
That was a long time ago, I can no longer remember.
0
Show your attempt to can help you with mistakes
0
word=input()
list_word=list(word)
n=0
while n < len(list_word):
if list_word.count(list_word[n]) == 1:
n+=1
else:
break
if n==len(list_word):
print ("true")
else:
print ("false")