()
| 3 | |
| 4 | |
| 5 | def get_project_path() -> Path: |
| 6 | script_path = os.path.realpath(__file__) |
| 7 | repo_path = Path(script_path).parents[2] |
| 8 | problems_path = repo_path / 'problems' |
| 9 | problems_path.mkdir(exist_ok=True) |
| 10 | return problems_path |
| 11 | |
| 12 | |
| 13 | def get_md_template_path() -> Path: |