()
| 141 | enable_keys() |
| 142 | |
| 143 | def start_isort(): |
| 144 | disable_keys() |
| 145 | clear() |
| 146 | show_text("Insertion Sort") |
| 147 | isort(s) |
| 148 | clear() |
| 149 | show_text(instructions1) |
| 150 | show_text(instructions2, line=1) |
| 151 | enable_keys() |
| 152 | |
| 153 | def start_qsort(): |
| 154 | disable_keys() |
nothing calls this directly
no test coverage detected
searching dependent graphs…