8000 Rename recursivePalindrome.py to recursive_palindrome.py · CO18326/python@d981917 · GitHub
[go: up one dir, main page]

Skip to content

Commit d981917

Browse files
authored
Rename recursivePalindrome.py to recursive_palindrome.py
1 parent 0f38e59 commit d981917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

strings/recursivePalindrome.py renamed to strings/recursive_palindrome.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ def checkString(string):
77
return False
88
else: return string[0] == string[-1]
99

10-
print(checkString(input("check word for palindrome: ")))
10+
print(checkString(input("check word for palindrome: ")))

0 commit comments

Comments
 (0)
0