프로그래머스 코딩 기초 트레이닝 주사위게임3 JAVA
import java.util.*; class Solution { public int solution(int a, int b, int c, int d) { // 주사위 배열 생성, 정렬 Integer[] dice = {a, b, c, d}; Arrays.sort(dice); // 중복 제거 Set set = new HashSet(Arrays.asList(dice)); Integer[] diceList = set.toArray(new Integer[0]); // 네 주사위의 숫자가 같다면 (p, p, p, p) if(diceList.length == 1) { return 1111 * diceList[0]; }else if(diceList.length == 2) { int p = diceList[0]; in..