599. Minimum Index Sum of Two Lists

注意因为要求最小的 所以如果碰到了比现有的要小的时候 我们要清空该List

class Solution {
    public String[] findRestaurant(String[] list1, String[] list2) {
        HashMap map = new HashMap<>();
        ArrayList result = new ArrayList<>();
        int min_sum = Integer.MAX_VALUE ;
        for(int i = 0 ;i

你可能感兴趣的:(599. Minimum Index Sum of Two Lists)