def is_isogram(string): for i in string: if string.count(i) > 1: return False return True
function isIsogram(str){ return new Set(str.toUpperCase()).size == str.length; }