forked from gouthampradhan/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TwoSum.java
75 lines (67 loc) · 1.92 KB
/
TwoSum.java
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package hashing;
import java.util.HashMap;
/**
* Created by gouthamvidyapradhan on 09/03/2017.
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
*/
public class TwoSum
{
HashMap<Integer, Integer> map = new HashMap<>();
public int[] twoSum(int[] nums, int target)
{
int[] result = new int[2];
for(int i : nums)
{
if(map.keySet().contains(i))
{
int count = map.get(i);
map.put(i, ++count);
}
else
{
map.put(i, 1);
}
}
for(int i = 0, l = nums.length; i < l; i ++)
{
int ele = nums[i];
int req = target - ele;
if(map.keySet().contains(req))
{
result[0] = i;
if(ele == req)
{
int count = map.get(req);
if(count > 1)
{
for(int j = i + 1; j < l; j++)
{
if(nums[j] == req)
{
result[1] = j;
return result;
}
}
}
}
else
{
for(int j = i + 1; j < l; j++)
{
if(nums[j] == req)
{
result[1] = j;
return result;
}
}
}
}
}
return result;
}
}