MCPcopy Index your code
hub / github.com/billryan/algorithm-exercise / get_summary_dir_file

Function get_summary_dir_file

scripts/check_summary.py:27–35  ·  view source on GitHub ↗
(summary_md)

Source from the content-addressed store, hash-verified

25
26
27def get_summary_dir_file(summary_md):
28 dir_file_list = []
29 lines = open(summary_md)
30 for line in lines:
31 if line.find('* [') != -1:
32 dir_file = re.split('[()]', line)[-2]
33 dir_file_list.append(dir_file)
34
35 return dir_file_list
36
37
38def get_missing_summary(summary, dir_files):

Callers 1

check_summary.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected