Spaces:
Running
Running
| import json | |
| from pathlib import Path | |
| def evaluate_problem( | |
| input_file: str | |
| ): | |
| with Path(input_file).open("r") as f: | |
| raw = f.read() | |
| data_dict = json.loads(raw) | |
| data = data_dict['boundary_json'] | |
| print("Starting evaluation.") | |
| result = 0 | |
| print("Finished evaluation.") | |
| return result | |