DEV Community

Cover image for Two Sum Leetcode Solution Using Javascript
Ashok Kumar Singh
Ashok Kumar Singh

Posted on

Two Sum Leetcode Solution Using Javascript

var twoSum = function(nums, target) { 
for (let i = 0; i < nums.length; i++) {
 for (let j = i + 1; j < nums.length; j++) {
 if (nums[i] + nums[j] == target) {
 return [i, j] 
} 
} 
} 
};

Enter fullscreen mode Exit fullscreen mode

Top comments (0)