-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTwoSum.java
More file actions
24 lines (24 loc) · 729 Bytes
/
Copy pathTwoSum.java
File metadata and controls
24 lines (24 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import java.util.*;
public class TwoSum {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int[] arr=new int[n];
for(int i=0;i<n;i++){
arr[i]=sc.nextInt();
}
int target=sc.nextInt();
Map<Integer,Integer> map=new HashMap<>();
ArrayList<Integer> list=new ArrayList<>();
for(int i=0;i<n;i++){
int complement=target-arr[i];
if(map.containsKey(complement)){
list.add(map.get(complement));
list.add(i);
}
map.put(arr[i],i);
}
System.out.println(list);
sc.close();
}
}