Skip to content

Commit 1e9fcd7

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

strings/is_palindrome.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ def is_palindrome(txt):
1111
bool: True if the text is a palindrome, False otherwise.
1212
"""
1313
return txt == txt[::-1]
14-
14+
15+
1516
print(is_palindrome("radar"))

0 commit comments

Comments
 (0)