Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import java.util.List;
public class Main {
public static List filter(String[] strs, List list) {
for (int i = 0; i < strs.length; i++) {
while (list.contains(strs[i]))
list.remove(strs[i]);
}
return list;
}
}