LEETCODE 1 (JAVASCRIPT) | TWO SUM

Поділитися
Вставка
  • Опубліковано 7 січ 2025

КОМЕНТАРІ • 14

  • @HollowSoulju
    @HollowSoulju 2 роки тому +2

    Jeez, just watched a couple of your videos but plan to watch them all. Love the explanations and your method of teaching

  • @chixandegg
    @chixandegg 3 роки тому +3

    Thank you! Finally found the channel I’ve been looking for! Thank you for having a playlist for each topic!

  • @muhdmahmood
    @muhdmahmood Рік тому +1

    hi guys, how do i try out this code in VS code
    Any ideas?

  • @shivanshsharma4916
    @shivanshsharma4916 Рік тому

    ooo im blinded by the lights ( white screen)

  • @Samiullah-vd6sm
    @Samiullah-vd6sm Місяць тому

  • @duahaugaming8715
    @duahaugaming8715 3 роки тому

    thank you so much

  • @Saurabhkumar-ps5zp
    @Saurabhkumar-ps5zp 2 роки тому

    thanks sir

  • @vlogmoinc5597
    @vlogmoinc5597 2 роки тому +3

    var twoSum = function(nums, target) {
    let map = new Map()
    for (let i = 0; i < nums.length; i++){
    let num1 = nums[i]
    let num2 = target - num1
    if(map.has(num2)){
    return [i,map.get(num2)]
    }
    map.set(num1, i)
    }
    };

  • @ilikespaghetti2170
    @ilikespaghetti2170 2 роки тому

    this solution is so cool lol

  • @adityanavgire9118
    @adityanavgire9118 2 роки тому

    JavaScript Code
    function sum(s, t) {
    let i = 0;
    let j = i + 1;
    while (j < s.length) {
    if (s[i] + s[j] == t) {
    return [i, j];
    } else {
    j++;
    }
    i++;
    }
    }
    const res = sum(arr, target);

    • @penumono
      @penumono Рік тому

      This code fails for test case [3, 2, 3]