forked from AllenDowney/ThinkPython
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinterlock.py
49 lines (34 loc) · 1.11 KB
/
interlock.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
"""This module contains code from
Think Python by Allen B. Downey
http://thinkpython.com
Copyright 2012 Allen B. Downey
License: GNU GPLv3 http://www.gnu.org/licenses/gpl.html
"""
from inlist import *
def interlock(word_list, word):
"""Checks whether a reversed word appears in word_list.
word_list: list of strings
word: string
"""
evens = word[::2]
odds = word[1::2]
return in_bisect(word_list, evens) and in_bisect(word_list, odds)
def interlock_general(word_list, word, n=3):
"""Checks whether a reversed word appears in word_list.
word_list: list of strings
word: string
n: number of interleaved words
"""
for i in range(n):
inter = word[i::n]
if not in_bisect(word_list, inter):
return False
return True
if __name__ == '__main__':
word_list = make_word_list()
for word in word_list:
if interlock(word_list, word):
print word, word[::2], word[1::2]
for word in word_list:
if interlock_general(word_list, word, 3):
print word, word[0::3], word[1::3], word[2::3]