mirror of
https://github.com/Xevion/leetcode.git
synced 2025-12-06 05:15:30 -06:00
21 lines
591 B
Java
21 lines
591 B
Java
// Accepted
|
|
// Runtime: 0 ms
|
|
// Memory Usage: 39.7 MB
|
|
// Submitted: January 12th, 2021
|
|
|
|
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++) {
|
|
int complement = target - nums[i];
|
|
if (map.containsKey(complement)) {
|
|
return new int[] { map.get(complement), i };
|
|
}
|
|
map.put(nums[i], i);
|
|
}
|
|
throw new IllegalArgumentException("No two sum solution");
|
|
}
|
|
} |