Skip to content

Commit cf82a85

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9cb62db commit cf82a85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

strings/palindrome.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
def is_palindrome(s: str) -> bool:
2222
"""
2323
Check whether a given string is a palindrome.
24-
24+
2525
:param s: input string
2626
:return: True if palindrome, False otherwise
2727
"""
28-
28+
2929
start_i = 0
3030
end_i = len(s) - 1
3131
while start_i < end_i:

0 commit comments

Comments
 (0)