-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dhayananth Santhamoorthy
committed
May 11, 2022
1 parent
a4f642f
commit 8a84c54
Showing
6 changed files
with
4,412 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
Dhaya Santhamoorthy/wk10 - starts 9th May/3-wed/search-algorithms/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
14 changes: 14 additions & 0 deletions
14
Dhaya Santhamoorthy/wk10 - starts 9th May/3-wed/search-algorithms/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
 | ||
|
||
# Search Algorithms Exercises | ||
|
||
## Overview | ||
In this exercise, you'll practice two different implementations of the binary search algorithm: | ||
* An interative implementation | ||
* A recursive implementation | ||
|
||
Both implementations are in the `searches.js` file. The "test" folder also has test scripts for both versions of the algorithm. | ||
|
||
Make sure that you completed the myGA module for Search Algorithms (link) before completing these exercises. | ||
|
||
> Note: the myGA module links out to Codepen for a code challenge on the binary search algorithm. **This exercise is the same as the one here, and is meant to help you prepare for the in class exercises.** |
Oops, something went wrong.