Skip to content

Instantly share code, notes, and snippets.

@wangchauyan
Created December 1, 2014 01:49
Show Gist options
  • Save wangchauyan/42d89fd7a1af08fa21b7 to your computer and use it in GitHub Desktop.
Save wangchauyan/42d89fd7a1af08fa21b7 to your computer and use it in GitHub Desktop.
/*
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2.
Please note that your returned answers (both index1 and index2) are not zero-based.
You may assume that each input would have exactly one solution.
Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2
*/
public class Solution {
public int[] twoSum(int[] numbers, int target) {
if(numbers == null || numbers.length < 2) return null;
int[] solution = new int[2];
HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
for(int i = 0; i < numbers.length; i++) {
if(map.containsKey(target - numbers[i])) {
solution[0] = map.get(target - numbers[i])+1;
solution[1] = i + 1;
return solution;
} else {
map.put(numbers[i], i);
}
}
return solution;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment