We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a6d45a commit 1fee3a8Copy full SHA for 1fee3a8
strings/is_isogram.py
@@ -25,3 +25,5 @@ def is_isogram(string: str) -> bool:
25
input_str = input("Enter a string ").strip()
26
isogram = is_isogram(input_str)
27
print(f"{input_str} is {'an' if isogram else 'not an'} isogram.")
28
+
29
0 commit comments