728x90 반응형 알고리즘 문제풀이146 프로그래머스 - 다음 큰 숫자 class Solution { public int solution(int n) { int answer = 0; int count = 0; String a = Integer.toBinaryString(n); for(int i=0; i 2023. 4. 17. 프로그래머스 - 올바른 괄호 import java.util.*; class Solution { boolean solution(String s) { Stack stacks = new Stack(); for(int i=0; i 2023. 4. 14. 프로그래머스 - 카드 뭉치 class Solution { public String solution(String[] cards1, String[] cards2, String[] goal) { int cards1Num = 0; int cards2Num = 0; for(int k=0; k 2023. 4. 10. 프로그래머스 - 과일 장수 import java.util.*; class Solution { public int solution(int k, int m, int[] score) { int answer = 0; Arrays.sort(score); int count = score.length-m; for(int i=0; i 2023. 4. 7. 이전 1 2 3 4 5 ··· 37 다음 728x90 반응형