def is_isogram(string): return len(list(set(string))) == len(string)