Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ That being said, please still use the 20 minute rule :slightly_smiling_face:

## MVP Tasks

- Open up the [iterative_sorting](src/iterative_sorting) directory
- Read through the descriptions of the `bubble_sort` and `selection_sort` algorithms
- Implement `bubble_sort` and `selection_sort` in [iterative_sorting.py](src/iterative_sorting/iterative_sorting.py)
- Test your implementation by running `test_iterative.py`
- Open up the [iterative_sorting](src/iterative_sorting) directory.
- Read through the descriptions of `bubble_sort` and `selection_sort` algorithms.
- Implement `bubble_sort` and `selection_sort` in [iterative_sorting.py](src/iterative_sorting/iterative_sorting.py).
- Test your implementation by running `test_iterative.py`.

# Part 2

## MVP Tasks

- Open up the [recursive_sorting](src/recursive_sorting) directory
- Read through the descriptions of the `merge_sort` algorithm
- Implement `merge_sort` in [recursive_sorting.py](src/recursive_sorting/recursive_sorting.py)
- Test your implementation by running `test_recursive.py`
- Open up the [recursive_sorting](src/recursive_sorting) directory.
- Read through the descriptions of the `merge_sort` algorithm.
- Implement `merge_sort` in [recursive_sorting.py](src/recursive_sorting/recursive_sorting.py).
- Test your implementation by running `test_recursive.py`.

## Stretch Goals
- Implement all the methods in the `searching.py` file in the `searching` directory.
Expand Down