diff --git a/practice.py b/practice.py index e69de29..27de257 100644 --- a/practice.py +++ b/practice.py @@ -0,0 +1,11 @@ +list = ['a','b','c','b','a'] + +list1 = list + +list1.reverse() + + +if list == list1: + print 'Its a palindrome string' +else: + print 'Its not a palindrome string' diff --git a/tests/__init__.pyc b/tests/__init__.pyc new file mode 100644 index 0000000..119c1c9 Binary files /dev/null and b/tests/__init__.pyc differ diff --git a/tests/test_solution.pyc b/tests/test_solution.pyc new file mode 100644 index 0000000..818d88e Binary files /dev/null and b/tests/test_solution.pyc differ