(input_file)
| 66 | |
| 67 | |
| 68 | def process_single_round(input_file): |
| 69 | with open(input_file, 'r', encoding='utf-8') as f: |
| 70 | items = [json.loads(line) for line in f] |
| 71 | |
| 72 | return items |
| 73 | |
| 74 | |
| 75 | def aggregate_statistics(round1_file, round2_file, round3_file): |
no outgoing calls
no test coverage detected