Python Progress
This commit is contained in:
@@ -1,2 +1,9 @@
|
||||
def is_isogram():
|
||||
pass
|
||||
def is_isogram(inp):
|
||||
letList = []
|
||||
for i in inp.lower():
|
||||
if i.isalpha():
|
||||
if not(i in letList):
|
||||
letList.append(i)
|
||||
else:
|
||||
return False
|
||||
return True
|
||||
|
Reference in New Issue
Block a user