Skip to content

Commit 3e2bde3

Browse files
yaodehaungnick.huang
and
nick.huang
authored
fix: issue #84 (#85)
* add two sum js * add two sum js * fix: js semicolon #84 Co-authored-by: nick.huang <[email protected]>
1 parent 05fa6bf commit 3e2bde3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

javascript/_1.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Two sum
2+
3+
var twoSum = function(nums, target) {
4+
var sum = {}
5+
for( var i = 0 ; i < nums.length ; i++){
6+
7+
if(!sum.hasOwnProperty(target - nums[i])){
8+
sum[nums[i]] = i;
9+
10+
}else{
11+
return [i , sum[target-nums[i]] ]
12+
}
13+
}
14+
};
15+
16+
console.log(twoSum([2,7,11,15],9));

0 commit comments

Comments
 (0)