-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpalindrome.py
66 lines (54 loc) · 1.42 KB
/
palindrome.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# encoding: utf-8
"""
palindrome.py
AKA exercise-6.6.
Created by Terry Bates on 2012-08-15.
Copyright (c) 2012 http://the-awesome-python-blog.posterous.com.
All rights reserved."""
import sys
import os
def first(word):
return word[0]
def last(word):
return word[-1]
def middle(word):
return word[1:-1]
def is_odd_char(word):
if len(word) % 2 == 1:
return True
else:
return False
def first_equals_last(a):
if first(a) == last (a):
return True
else:
return False
def is_palindrome(word):
# base case is 3 character word
if not first_equals_last(word) or not is_odd_char(word):
return False
else:
if len(word) > 3:
word = middle(word)
return is_palindrome(word)
elif len(word) == 3:
return True
else:
return False
# First Attempt:
# if first_equals_last(word) and len(word) > 3:
# print word + ": in if"
# word = middle(word)
# return is_palindrome(word)
# elif first_equals_last(word) and len(word) == 3:
# print word + ": in elif"
# return True
# else:
# print word + ": in else"
# return False
#
if __name__ == '__main__':
print 'bob ' + str(is_palindrome('bob'))
print 'terry ' + str(is_palindrome('terry'))
print 'coraroc ' + str(is_palindrome('coraroc'))