ソースを参照

Modified sorting.py and it works

luislopez66 2 年 前
コミット
8ec29f4d62
共有1 個のファイルを変更した0 個の追加1 個の削除を含む
  1. 0
    1
      sorting.py

+ 0
- 1
sorting.py ファイルの表示

@@ -19,7 +19,6 @@ from merge import merge
19 19
 # First subarray is arr[l..m]
20 20
 # Second subarray is arr[m+1..r]
21 21
 
22
-
23 22
 def mergeSort(lista, l, r):
24 23
 	if l < r:
25 24
       # Same as (l+r)//2, but avoids overflow for