Java18 [Java]프로그래머스 위장 ``` import java.util.*; class Solution { public int solution(String[][] clothes) { int answer = 0; HashMap hm = new HashMap(); for(int i =0; i 2019. 4. 15. [Java]프로그래머스 쇠막대기 ``` import java.util.Stack; class Solution { public int solution(String arrangement) { int answer = 0; char[] arr = arrangement.toCharArray(); Stack st = new Stack(); for(int i = 0; i 2019. 4. 15. [Java]프로그래머스 프린터 ``` import java.util.LinkedList; import java.util.Queue; class Solution { public int solution(int[] priorities, int location) { Queue q =new LinkedList(); for(int p:priorities) { q.offer(p); } int count=0; while(!q.isEmpty()) { int item = q.poll(); boolean check = true; for(int s:q) { if(item 2019. 4. 15. [Java]프로그래머스 스킬트리 ``` class Solution { public int solution(String skill, String[] skill_trees) { int answer = 0; for(int i=0; i 2019. 4. 15. 이전 1 2 3 4 5 다음 728x90