()
| 131 | write(text, align="center", font=("Courier", 16, "bold")) |
| 132 | |
| 133 | def start_ssort(): |
| 134 | disable_keys() |
| 135 | clear() |
| 136 | show_text("Selection Sort") |
| 137 | ssort(s) |
| 138 | clear() |
| 139 | show_text(instructions1) |
| 140 | show_text(instructions2, line=1) |
| 141 | enable_keys() |
| 142 | |
| 143 | def start_isort(): |
| 144 | disable_keys() |
nothing calls this directly
no test coverage detected
searching dependent graphs…