feat(curriculum): add binary search workshop JSV9 (#65964)

Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com>
Co-authored-by: Jeevankumar S <jeevenkumar2003@gmail.com>
Co-authored-by: Kolade <chrisjay967@gmail.com>
This commit is contained in:
Zaira
2026-03-27 19:15:35 +05:00
committed by GitHub
parent 72f5d67f6a
commit 431c77820e
19 changed files with 890 additions and 0 deletions
+7
View File
@@ -5645,6 +5645,13 @@
"These lessons cover algorithm implementations, time and space complexity analysis, and the divide and conquer programming paradigm."
]
},
"workshop-binary-search-js": {
"title": "Implement the Binary Search Algorithm",
"intro": [
"The binary search algorithm is a searching algorithm used to find a target item in a sorted list.",
"In this workshop, you'll implement the binary search algorithm and return the path it took to find the target or return 'Value not found'."
]
},
"lab-bubble-sort-algorithm": {
"title": "Implement the Bubble Sort Algorithm",
"intro": [