Find K-th Smallest Pair Distance | LeetCode 719 | Coders Camp

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ม.ค. 2025

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

  • @MykolaParamonov
    @MykolaParamonov ปีที่แล้ว +2

    Thank you very much for your explanation! I struggled for several hours to understand the related article in the Leetcode editorial but it was in vain. Then I found your video and got the idea after the first watch. So simple and clear explanation!

  • @algorithmo134
    @algorithmo134 3 ปีที่แล้ว +7

    You made a mistake at 6:34, it should be 7- 9 and the mid is 8

  • @jawwadakhter5261
    @jawwadakhter5261 3 ปีที่แล้ว +1

    This is what an algorithm walk is called .....XD. Really Nice

    • @CodersCamp
      @CodersCamp  3 ปีที่แล้ว

      Thanks a lot!!

    • @jawwadakhter5261
      @jawwadakhter5261 3 ปีที่แล้ว

      @@CodersCamp Can you make more tutorials on recursion. I am having trouble in forming recursion logic

    • @CodersCamp
      @CodersCamp  3 ปีที่แล้ว

      @@jawwadakhter5261 th-cam.com/video/WzT6wxzYG_k/w-d-xo.html here is the link for recursion problems. You can find step by step introduction of techniques to solve recursive problems in this playlist. Hope this helps!

  • @AnshulKotwal-r2o
    @AnshulKotwal-r2o 5 หลายเดือนก่อน +1

    you have written hight instead od right and ur code accepted wow i dont know how it happended but i should give u all right code class Solution {
    public int smallestDistancePair(int[] nums, int k) {
    Arrays.sort(nums);
    int left=0;
    int right=nums[nums.length-1]-nums[0];
    while(left=k);
    }
    }
    btw explanation was relly appreciating

  • @algorithmo134
    @algorithmo134 3 ปีที่แล้ว +1

    Please keep making more leetcode videos!

  • @ganeshjaggineni4097
    @ganeshjaggineni4097 5 หลายเดือนก่อน +1

    NICE SUPER EXCELLENT MOTIVATED

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

      Thanks a lot

  • @Anjaliartistp
    @Anjaliartistp 3 ปีที่แล้ว +2

    Thankyou sor much for this video👍, your explanation is superb 😀

    • @CodersCamp
      @CodersCamp  3 ปีที่แล้ว +1

      Thank you @Rekha Kumari

  • @karmeshduggar6694
    @karmeshduggar6694 3 ปีที่แล้ว +1

    Thank you so much ma'am!

  • @ArpitDhamija
    @ArpitDhamija 3 ปีที่แล้ว +2

    first: you calculated 'mid' wrong in the example
    second: Please try to give your own explanation instead of just copying and explaining code taken from discussion

  • @hanlinwang7297
    @hanlinwang7297 2 ปีที่แล้ว

    Great video!!!

  • @jwzale1701
    @jwzale1701 2 ปีที่แล้ว

    Thank you thank you!

  • @akashmaurya6313
    @akashmaurya6313 3 ปีที่แล้ว

    Clear explanation , thanku so much

    • @CodersCamp
      @CodersCamp  3 ปีที่แล้ว

      Thank you!!! Happy Learning!

  • @algorithmo134
    @algorithmo134 3 ปีที่แล้ว

    Subscribed!

  • @akhil2489
    @akhil2489 3 ปีที่แล้ว

    Why return left ?

    • @CodersCamp
      @CodersCamp  3 ปีที่แล้ว

      Because left is the smallest k that satisfies our condition function. I have used the same template to solve all binary search problem, and you can check that template here, th-cam.com/video/g36R3EYFFvE/w-d-xo.html.

  • @gourabsingha1
    @gourabsingha1 5 หลายเดือนก่อน +1

    sunar explanation