-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Day-26 q3: Find first and last position of element in sorted array #560
Comments
please assign this issue to me. |
@bh-g this issue assign to me |
Pls assign this issue to me @bh-g |
Please assign this issue to me @bh-g . |
Plz assign for python soln... @bh-g |
@bh-g please assign this issue to me:) |
Please assign this issue to me |
please assign this question to me :) @bh-g |
please assign this issue to me @bh-g |
@bh-g @kratika-Jangid @karishma-2020 please assign this issue to me for cpp solution. |
…owScriptWinterOfCode#560 cpp code added by Akansha77
Please assign this issue to me @bh-g . |
Please assign it to me @bh-g @kratika-Jangid |
Given an array of integers nums sorted in non-decreasing order, find the starting and ending position of a given target value.
If target is not found in the array, return [-1, -1].
You must write an algorithm with O(log n) runtime complexity.
Example 1:
Input: nums = [5,7,7,8,8,10], target = 8
Output: [3,4]
The text was updated successfully, but these errors were encountered: