-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #776 from paragon0107/main
Week3
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |