Armen Vartan b9a8397f34 files
2014-12-01 12:17:43 -05:00

15 lines
385 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import sys
def is_palindrome(string):
pass
##this function should only check validity of the string, and rely on other functions for string operations
#assert statements
assert(is_palindrome('greg is the man') == False), "Presumably random sentence should return false"
assert(is_palindrome('No Mel Gibson is a casinos big lemon') == True), "Palindrome should return true"