-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMinimumIndexSumOfTwoLists.java
40 lines (37 loc) · 1.45 KB
/
MinimumIndexSumOfTwoLists.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
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class MinimumIndexSumOfTwoLists {
public String[] findRestaurant(String[] list1, String[] list2) {
int indexSum = Integer.MAX_VALUE;
List<String> result = new ArrayList<>();
Map<String, Integer> restaurantIndices = getValueToIndexMap(list1);
for (int index = 0 ; index < list2.length ; index++) {
if (restaurantIndices.containsKey(list2[index])) {
if (index + restaurantIndices.get(list2[index]) < indexSum) {
result.clear();
result.add(list2[index]);
indexSum = index + restaurantIndices.get(list2[index]);
} else if(index + restaurantIndices.get(list2[index]) == indexSum) {
result.add(list2[index]);
}
}
}
return toArray(result);
}
private String[] toArray(List<String> strings) {
String[] result = new String[strings.size()];
for (int index = 0 ; index < result.length ; index++) {
result[index] = strings.get(index);
}
return result;
}
private Map<String, Integer> getValueToIndexMap(String[] array) {
Map<String, Integer> result = new HashMap<>();
for (int index = 0 ; index < array.length ; index++) {
result.put(array[index], index);
}
return result;
}
}