-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathreadme_generator.py
94 lines (73 loc) · 3.44 KB
/
readme_generator.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Prints out a README.md file for the project
import re, os
start_of_readme = '''# Competitive Programming 4 Solutions
My solutions to some of the [Kattis](https://open.kattis.com/) problems listed in [Competitive Programming 4](https://cpbook.net/details?cp=4).
Some [UVA Online Judge](https://onlinejudge.org/) problems are also solved on [Virtual Judge](https://vjudge.net/).
C++ code usually requires C++17 to work.
Python code usually requires Python 3.8 to work.
# List of Kattis Questions Solved

| Index | Question Title | Solution |
| ----- | -------------- | -------- |'''
print(start_of_readme)
m_file_types = {'C++': 'cpp', 'Python': 'py', 'Haskell': 'hs', 'C': 'c', 'Ocaml': 'ml', 'Rust': 'rs'}
things_to_write = []
def print_table():
things_to_write.sort()
solution_types = []
for index, (q_name, sol, task) in enumerate(things_to_write):
for k, v in m_file_types.items():
if (sol.endswith(v)):
solution_types.append((k, sol))
break
if (index != len(things_to_write) - 1):
if (things_to_write[index+1][0] == q_name):
continue
line = f"| {index+1} | [{q_name}]({task}) | "
for solution_type, solution in solution_types:
line += f"[{solution_type}]({solution}), "
line = line[:-2] + " |"
print(line)
solution_types.clear()
solution_root = "https://github.com/BrandonTang89/Competitive_Programming_4_Solutions/blob/main"
# Get Kattis Solutions
stream = os.popen('find | grep kattis')
lines = stream.readlines()
for line in lines:
line = line.strip()
# Matches kattis_xxxx.py or kattis_xxxx.cpp or kattis_xxxx.hs
m = re.search(r'\/kattis_(\w*)\.(?:py|cpp|hs|c|ml|rs)', line)
# First capturing group is the problem name
things_to_write.append([str(m.group(1)), solution_root + line[1:], "https://open.kattis.com/problems/" + str(m.group(1))])
print_table()
# Get VJudge Solutions
things_to_write.clear()
stream = os.popen('find | grep vjudge')
lines = stream.readlines()
for line in lines:
line = line.strip()
# Matches vjudge_xxxx_someothername.someext where the someothername is optional
m = re.search(r'\/vjudge_([^_]*)(?:.*).(?:py|cpp|hs|c|ml|rs)', line)
# First capturing group is the problem name
things_to_write.append([str(m.group(1)), solution_root + line[1:], "https://vjudge.net/problem/" + str(m.group(1))])
print('''# List of Virtual Judge Questions Solved
| Index | Question Title | Solution |
| ----- | -------------- | -------- |''')
print_table()
# Get Code Forces Solutions
things_to_write.clear()
stream = os.popen('find | grep CF')
lines = stream.readlines()
for line in lines:
line = line.strip()
# Matches CF(ContestNumber)_(Problem)_(TaskName).(?:ext)
m = re.search(r'CF(\d+)_([^_]+)_([^.]+)?\.(?:py|cpp|hs|c|ml|rs)', line)
contest_number = str(m.group(1))
question_letter = str(m.group(2))
question_name = str(m.group(3))
things_to_write.append([f"CF{contest_number}_{question_letter}_{question_name}", solution_root + line[1:],
f"https://codeforces.com/contest/{contest_number}/problem/{question_letter}"])
print('''# List of Code Forces Questions Solved
| Index | Question Title | Solution |
| ----- | -------------- | -------- |''')
print_table()