Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 21.3k
Expand file tree
/
Copy pathTwoSumProblem.java
More file actions
Latest commit
33 lines (29 loc) · 1.3 KB
/
Copy pathTwoSumProblem.java
File metadata and controls
33 lines (29 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
packagecom.thealgorithms.misc;
importjava.util.HashMap;
importjava.util.Optional;
importorg.apache.commons.lang3.tuple.Pair;
publicfinalclassTwoSumProblem {
privateTwoSumProblem() {
}
/**
* The function "twoSum" takes an array of integers and a target integer as input, and returns an
* array of two indices where the corresponding elements in the input array add up to the target.
* @param values An array of integers.
* @param target The target is the sum that we are trying to find using two numbers from the given array.
* @return A pair or indexes such that sum of values at these indexes equals to the target
* @author Bama Charan Chhandogi (https://github.com/BamaCharanChhandogi)
*/
publicstaticOptional<Pair<Integer, Integer>> twoSum(finalint[] values, finalinttarget) {
HashMap<Integer, Integer> valueToIndex = newHashMap<>();
for (inti = 0; i < values.length; i++) {
finalvarremainder = target - values[i];
if (valueToIndex.containsKey(remainder)) {
returnOptional.of(Pair.of(valueToIndex.get(remainder), i));
}
if (!valueToIndex.containsKey(values[i])) {
valueToIndex.put(values[i], i);
}
}
returnOptional.empty();
}
}