diff --git a/readme.md b/readme.md index 9c41bb3e..bdb136e8 100644 --- a/readme.md +++ b/readme.md @@ -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.