No Repeated Letters

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"
Вывод
False

Нужно реализовать

def is_isogram(string: str) -> bool:

Теги

stringsset
PostgreSQLv16

Εδώ θα εμφανιστεί το αποτέλεσμα εκτέλεσης του κώδικα

Tests12
Visible tests
Κρυφό τεστ 7
Κρυφό τεστ 8
Κρυφό τεστ 9
Κρυφό τεστ 10
Κρυφό τεστ 11
Κρυφό τεστ 12

They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.

Focus radio
Paused · SomaFM · Fluid