Skip to content

Commit

Permalink
Merge pull request #776 from paragon0107/main
Browse files Browse the repository at this point in the history
Week3
  • Loading branch information
SamTheKorean authored Dec 29, 2024
2 parents 7e40cb3 + 14b4517 commit 5a062dd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions two-sum/paragon0107.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

import java.util.HashMap;
import java.util.Map;

class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for(int i =0;i<nums.length;i++){
map.put(nums[i], i);
}

for(int i = 0;i<nums.length;i++){
int b = target - nums[i];
if(map.containsKey(b) && map.get(b) != i){
int j = map.get(b);
return new int[]{i,j};
}
}
return null;
}
}

0 comments on commit 5a062dd

Please sign in to comment.