Tim 2 Phan Tu Giong Nhau Trong 1 Mang Java

public static boolean checkDuplicateUsingAdd(String[] input) {
    Set tempSet = new HashSet();
    for (String str : input) {
        if (!tempSet.add(str)) {
            return true;
        }
    }
return false;
}