Binary Search
Medium📝 Description
Implement binary search on a sorted array
Input Format
First line: sorted array Second line: target value
Output Format
Index of target or -1 if not found
Constraints
Array length ≤ 1000
🔍 Sample Input
1 3 5 7 9
5
✅ Sample Output
2
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run