Skip to content

Commit 5fb5e2d

Browse files
committed
refat
1 parent f74b1bb commit 5fb5e2d

File tree

6 files changed

+1
-74
lines changed

6 files changed

+1
-74
lines changed

Diff for: src/main/__init__.py

Whitespace-only changes.

Diff for: src/main/main.py

-74
This file was deleted.

Diff for: src/sort/__init__.pyc

66 Bytes
Binary file not shown.

Diff for: src/sort/__pycache__/__init__.cpython-35.pyc

-147 Bytes
Binary file not shown.

Diff for: src/sort/__pycache__/sort.cpython-35.pyc

-6.08 KB
Binary file not shown.

Diff for: src/sort/sort.py

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def quick(nlist):
7070
pivot = nlist[0]
7171
lr = [x for x in nlist if x < pivot] # lower
7272
gt = [x for x in nlist[1:] if x >= pivot] # greater
73+
7374
return quick(lr) + [pivot] + quick(gt)
7475

7576
def merge(nlist):

0 commit comments

Comments
 (0)