₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,326,654 members, 8,427,455 topics. Date: Tuesday, 16 June 2026 at 12:05 AM

Toggle theme

Solaojo's Posts

Nairaland ForumSolaojo's ProfileSolaojo's Posts

1 (of 1 pages)

Jobs/VacanciesRe: Andela: IT Training And Job by solaojo: 10:10am On Jan 26, 2017
```
def is_isogram(word):
if type(word) != str:
raise TypeError('Argument should be a string')

elif word == "":
return (word, False)
else:
word = word.lower()
for char in word:
if word.count(char) > 1:
return (word, False)
else:
return (word, True)
```

Anyone with a clue why this is refusing to submit.

1 (of 1 pages)