diff --git a/arrays_and_strings/palindrome.py b/arrays_and_strings/palindrome.py index 2db9f90..ad39b0c 100644 --- a/arrays_and_strings/palindrome.py +++ b/arrays_and_strings/palindrome.py @@ -12,12 +12,3 @@ def is_palindrome(sentence): return is_palindrome(sentence[1:-1]) return False - - -if __name__ == '__main__': - print('Testing is_palindrome()...') - sentence ="subi no onibus" - print(f'Is {sentence} a palindrone?: {is_palindrome(sentence)}') - - sentence ="helllo there" - print(f'Is {sentence} a palindrone?: {is_palindrome(sentence)}')