readmes yo
This commit is contained in:
@ -2,13 +2,11 @@ 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
|
||||
#TESTS
|
||||
|
||||
assert(is_palindrome('greg is the man') == False), "Presumably random sentence should return false"
|
||||
|
||||
assert(is_palindrome('No Mel Gibson is a casino’s big lemon') == True), "Palindrome should return true"
|
||||
assert(is_palindrome("greg is the man") == False), "Presumably random sentence should return false"
|
||||
assert(is_palindrome("No Mel Gibson is a casino's big lemon") == True), "Palindrome should return true"
|
||||
|
Reference in New Issue
Block a user