We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b36e6 commit d51bc50Copy full SHA for d51bc50
palindrome/test.py
@@ -0,0 +1,10 @@
1
+import string_utils
2
+
3
+assert 'rento' == string_utils.remove_special_char('ren@to'), 'remove_special_char .... FAILED'
4
+print('remove_special_char .... SUCCESS')
5
6
+assert 'otaner' == string_utils.reverse('renato'), 'reverse .... FAILED'
7
+print('reverse .... SUCCESS')
8
9
+assert string_utils.is_palindrome('ana'), 'is_palindrome .... FAILED'
10
+print('is_palindrome .... SUCCESS')
0 commit comments