Indlæser opgaven…
An isogram is a word where no letter appears more than once. Write a function is_isogram that checks the string string and returns True if it has no repeated letters. Letter case does not matter, and non-letter characters should be ignored.
"lumberjacks"True"isograms"False"eleven"Falsedef is_isogram(string: str) -> bool:
Log ind for at se indsendelseshistorik
Log indLog ind for at bruge AI-mentor
Log ind"lumberjacks"True"isograms"False"eleven"False"six-year-old"True""True"Alphabet"False