Search in Rotated Sorted Array | LeetCode problem 33

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ธ.ค. 2024

ความคิดเห็น • 18

  • @adesoyeshubomi4010
    @adesoyeshubomi4010 10 หลายเดือนก่อน

    Best Explanation I've seen !!! Thank you 🙏🙏🙏🙏🙏🙏 keep up the great work!

  • @sidharthsharma2147
    @sidharthsharma2147 7 หลายเดือนก่อน

    Great logic building!!⭐

  • @mayappapujari9259
    @mayappapujari9259 11 หลายเดือนก่อน +1

    very easy solution.... make more videoes on leetcode problems

  • @imtiyazali5894
    @imtiyazali5894 10 หลายเดือนก่อน +2

    perfect code for pass all case of leetcode:=>
    public int search(int[] nums, int target) {
    int start = 0;
    int end = nums.length-1;
    while(start nums[mid] && target

  • @sanjaymurugasen3386
    @sanjaymurugasen3386 ปีที่แล้ว +4

    please continue the top interview 150 leetcode question series 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏

  • @rajukomaturi4341
    @rajukomaturi4341 7 หลายเดือนก่อน +3

    Great explanation always , your solution wont work for this array int[] nums = {7, 8, 9, 0, 1, 2, 3, 4, 5, 6}; , i think you have to correct left portion of array checking with if(nums[start]

    • @navalprakash3727
      @navalprakash3727 6 หลายเดือนก่อน

      class Solution {
      public int search(int[] nums, int target) {
      for(int i=0; i

    • @amanchand01
      @amanchand01 3 หลายเดือนก่อน

      you saw it too 🍻

  • @lv8705
    @lv8705 4 หลายเดือนก่อน

    hello mam . in else part we should write target

  • @PramodK-y4m
    @PramodK-y4m 2 หลายเดือนก่อน

    Can you share git repository?

  • @cheerlachinnikrishnasai1947
    @cheerlachinnikrishnasai1947 ปีที่แล้ว

    Thanks

  • @SandhyaraniTorase
    @SandhyaraniTorase 10 หลายเดือนก่อน

    Thank u mam

  • @KapilSharma-qh4zi
    @KapilSharma-qh4zi 5 หลายเดือนก่อน

    But it is not working on [5,1,3] array

    • @shubham_shubham
      @shubham_shubham 3 หลายเดือนก่อน

      you can do a small change here .. change second if condition inside while loop as if(nums[st]

  • @navalprakash3727
    @navalprakash3727 6 หลายเดือนก่อน +3

    class Solution {
    public int search(int[] nums, int target) {
    for(int i=0; i

    • @ChinmayPatil-22
      @ChinmayPatil-22 6 หลายเดือนก่อน +3

      bro it's time complexity is O(n) we have to do the question by O(log n)✌

    • @garun4950
      @garun4950 4 หลายเดือนก่อน

      @@ChinmayPatil-22 and also they ask to print -1 if we dont find element, we cant run another loop as it increases time complexity

  • @allasandeep1466
    @allasandeep1466 6 หลายเดือนก่อน

    class Solution {
    public int search(int[] nums, int target) {
    if(nums.length == 0 || nums == null){
    return -1;
    }
    int n= nums.length;
    int i;
    for( i=0;i