-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.py
35 lines (24 loc) · 850 Bytes
/
new.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
import os, re
SOURCE_DIRECTORY = "src"
SOLUTION_TEMPLATE = "_template.py"
SOLUTION_NAME = "solution.py"
PROMPT_NAME = "prompt.txt"
max_solution = 0
for dirno in range(1, 25):
solution_dir = str(dirno).zfill(2)
if not os.path.isdir(f"{SOURCE_DIRECTORY}/{solution_dir}") or re.match(
solution_dir, "[^0-9]"
):
continue
if solution_dir == "__pycache__":
continue
if int(solution_dir) > max_solution:
max_solution = int(solution_dir)
next_dir = str(max_solution + 1)
solution_dir = os.path.join(SOURCE_DIRECTORY, next_dir.rjust(2, "0"))
os.mkdir(solution_dir)
with open(SOLUTION_TEMPLATE, "rb") as template:
with open(os.path.join(solution_dir, SOLUTION_NAME), "wb") as solution:
solution.write(template.read())
with open(os.path.join(solution_dir, PROMPT_NAME), "wb"):
pass