(dataset: str)
| 16 | |
| 17 | |
| 18 | def global_util_init(dataset: str): |
| 19 | global problems |
| 20 | global task_ids |
| 21 | global problem_count |
| 22 | problems = get_problems(dataset) |
| 23 | task_ids = get_task_ids(dataset) |
| 24 | problem_count = len(problems) |
| 25 | |
| 26 | |
| 27 | ########################### |
no test coverage detected