/**
* 매개변수로 받은 문자열 list에 중복이 존재할 경우 true, 아니면 false 리턴
*
* @param list
* @return
*/
public static boolean hasDuplicated(List<String> list) {
if(list == null){ return false; }
Set<String> set = new HashSet<>(list);
if(set.size() < list.size()){
return true;
}
return false;
}
Subscribe
Login
0 Comments