1. 程式人生 > >(五)返回兩個數組之間的差異

(五)返回兩個數組之間的差異

() blog span 包含 int arrays spa lte turn

public static int[] difference(int[] first, int[] second) {
    Set<Integer> set = Arrays.stream(second).boxed().collect(Collectors.toSet());
    return Arrays.stream(first)
            .filter(v -> !set.contains(v))
            .toArray();
}

只保留 b 中不包含的值。

(五)返回兩個數組之間的差異