Massive renaming!

This commit is contained in:
Crista Lopes
2019-08-12 14:38:16 -07:00
parent e6c1238a56
commit 61d5f74ad9
90 changed files with 0 additions and 0 deletions

15
09-kick-forward/README.md Normal file
View File

@@ -0,0 +1,15 @@
Style #8
==============================
Variation of the candy factory style, with the following additional constraints:
- Each function takes an additional parameter, usually the last, which is another function
- That function parameter is applied at the end of the current function
- That function parameter is given as input what would be the output of the current function
- Larger problem is solved as a pipeline of functions, but where the next function to be applied is given as parameter to the current function
Possible names:
- Kick your teammate forward!
- Continuation-passing style
- Crochet loop

52
09-kick-forward/tf-09.py Executable file
View File

@@ -0,0 +1,52 @@
#!/usr/bin/env python
import sys, re, operator, string
#
# The functions
#
def read_file(path_to_file, func):
with open(path_to_file) as f:
data = f.read()
func(data, normalize)
def filter_chars(str_data, func):
pattern = re.compile('[\W_]+')
func(pattern.sub(' ', str_data), scan)
def normalize(str_data, func):
func(str_data.lower(), remove_stop_words)
def scan(str_data, func):
func(str_data.split(), frequencies)
def remove_stop_words(word_list, func):
with open('../stop_words.txt') as f:
stop_words = f.read().split(',')
# add single-letter words
stop_words.extend(list(string.ascii_lowercase))
func([w for w in word_list if not w in stop_words], sort)
def frequencies(word_list, func):
wf = {}
for w in word_list:
if w in wf:
wf[w] += 1
else:
wf[w] = 1
func(wf, print_text)
def sort(wf, func):
func(sorted(wf.items(), key=operator.itemgetter(1), reverse=True), no_op)
def print_text(word_freqs, func):
for (w, c) in word_freqs[0:25]:
print(w, "-", c)
func(None)
def no_op(func):
return
#
# The main function
#
read_file(sys.argv[1], filter_chars)