From 96607ab5e2318696d10bc2ccb840308fc8185884 Mon Sep 17 00:00:00 2001 From: marina <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Wed, 2 Aug 2023 20:57:18 -0700 Subject: [PATCH] Update README.md --- sorting/README.md | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/sorting/README.md b/sorting/README.md index 5563f59..13e6696 100644 --- a/sorting/README.md +++ b/sorting/README.md @@ -13,37 +13,3 @@

- -
- ----- - -### some examples in this dir - -
- -#### `sorting_algorithms.py` - -
- -```python -> python3 sorting_algorithms.py - - -Array: [3, 5, 1, 2, 10, 6] -Testing merge sort: [1, 2, 3, 5, 6, 10] -Testing quick sort: [1, 2, 3, 5, 6, 10] -``` - -
- -#### `binary_search.py` - -
- -```python -> python binary_search.py -Recursive: 6 -Iterative: 6 -``` -