Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit ac0c150

Browse files
changes ascii lower case characters range value
1 parent e833164 commit ac0c150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎daily_challenges/day_4/2_another_approach.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def is_panagram(input_string):
1717

1818
def is_pangram(_string):
1919
_string = _string.lower()
20-
# chr() convert digits from 97-123 to its ascii lower case character
20+
# chr() convert digits from 97-122 to its ascii lower case character
2121
charset = [chr(i) for i in range(97, 123)]
2222
for char in charset:
2323
if char not in _string:

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /