56. Merge Intervals Leetcode JavaScript Solution

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

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

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

    Cliffhanger ending

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

      seriously lmao

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

      code is working fine must be a glitch

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

      Loool, I just saw this comment and went back to the video. Sorry about that haha but thanks for pointing it out! 😅

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

    Great explanation, please do more of these type of videos, maybe solving all of blind 75 in javascript

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

      appreciate it!

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

    Amazing explanation !!

  • @Vivek-Nishad
    @Vivek-Nishad ปีที่แล้ว +2

    function sortArrays(arr) {
    return arr.sort((a, b) => a[0] - b[0]);
    }
    function mergeIntervals(arr) {
    let newArr = [arr[0]];
    for (const [start, end] of arr) {
    let lastEnd = newArr.at(-1)[1];
    if (start

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

    I didn’t check but at first glance, the bug is in line 16 - should be intervals[i][0].
    Also I’m not sure if you need to take a min at line 17 since you already sorted the array

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

    It’s in the if statement

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

    Shouldn't i = 0?

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

      already added zero indexed array in result so no need to start from 0