Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by Array Alchemist
LeetCode wizard with 75 conquered challenges under my belt.
Turning algorithm nightmares into "Aha!" moments, one explanation at a time.
Join me to level up your coding skills – from interviews to real-world application!
#8 Search in Rotated Sorted Array
Blind 75. Array
Search in Rotated Sorted Array
Solved
There is an integer array nums sorted in ascending order (with distinct values).
Given the array nums after the possible rotation and an integer target, return the index of target if it is in nums, or -1 if it is not in nums.
You must write an algorithm with O(log n) runtime complexity.
Example 1:
Example 2:
In #7 Problem sorted array, we discussed in detail the importance of it.
Here i will quickly mention about it's gist.
Rotated Sorted Array is sorted array which is disrupted at pivotal point
RoratedSortedArray = [left Sorted Array , right sorted array]
where, each element in left sorted array is greater than right sorted array.
From finding minimum in rotated sorted array which is
we can use this solution to come up with the index position to find a target
this is how we can solve this