Update README.md

This commit is contained in:
marina 2023-08-02 20:57:18 -07:00 committed by GitHub
parent e7995a9461
commit 96607ab5e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,37 +13,3 @@
</p> </p>
<br>
----
### some examples in this dir
<br>
#### `sorting_algorithms.py`
<br>
```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]
```
<br>
#### `binary_search.py`
<br>
```python
> python binary_search.py
Recursive: 6
Iterative: 6
```