Skip to content

Update Search in rotated array Question.java#212

Open
AshishJainMSRIT wants to merge 1 commit intocareercup:masterfrom
AshishJainMSRIT:patch-1
Open

Update Search in rotated array Question.java#212
AshishJainMSRIT wants to merge 1 commit intocareercup:masterfrom
AshishJainMSRIT:patch-1

Conversation

@AshishJainMSRIT
Copy link
Copy Markdown

Since nums=[3,1,1], x=1 is also a valid test case for this problem. But currently, the output of the code is -1 as condition (a[left]==a[mid]) is false and there is not condition for (a[mid]==a[right]).
So, I have removed this condition and it works fine in Leetcode.

Since nums=[3,1,1], x=1 is also a valid test case for this problem. But currently, the output of the code is -1 as  condition (a[left]==a[mid]) is false and there is not condition for (a[mid]==a[right]).
So, I have removed this condition and it works fine in Leetcode.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant