qq85715512
Results
1
comments of
qq85715512
python在执行代码时如果有缩进报错,但是在终端可以正常运行:  代码块如下: ````python # --run-- def quick_sort(arr, i, j): if i < j: idx = get_index(arr, i, j) quick_sort(arr, i, idx) quick_sort(arr, idx + 1, j) def get_index(arr, i,...