配列の中にある重複をなくし、Hashsetに保存
HashSet<String> set = new HashSet<>(Arrays.asList(arrays));
配列の中にある重複なしの要素のカウントする
int arrayCount = new HashSet<>(Arrays.asList(arrays)).size();
ArrayListの中にある重複をなくし、Hashsetに保存
HashSet<String> set = new HashSet<>(arrayList);
ArrayListの中にある重複なしの要素のカウントする
int arrayListCount = new HashSet<>(arrayList).size();