Commit
·
becaf1f
1
Parent(s):
2bb874a
Update README.md
Browse files
README.md
CHANGED
|
@@ -83,7 +83,6 @@ them, and then merging them back together.
|
|
| 83 |
|
| 84 |
Here's a Python implementation of the quick sort algorithm:
|
| 85 |
|
| 86 |
-
```python
|
| 87 |
def quick_sort(arr):
|
| 88 |
if len(arr) <= 1:
|
| 89 |
return arr
|
|
|
|
| 83 |
|
| 84 |
Here's a Python implementation of the quick sort algorithm:
|
| 85 |
|
|
|
|
| 86 |
def quick_sort(arr):
|
| 87 |
if len(arr) <= 1:
|
| 88 |
return arr
|