Print the final answer section.
(answer: str)
| 109 | |
| 110 | |
| 111 | def print_answer(answer: str) -> None: |
| 112 | """Print the final answer section.""" |
| 113 | print(f"\n{HR}") |
| 114 | print(" Answer") |
| 115 | print(HR) |
| 116 | print(answer) |
| 117 | print() |
| 118 | |
| 119 | |
| 120 | def print_result(result, *, show_trajectory: bool, output_json: bool) -> None: |