728x90 반응형 프로그래머스66 프로그래머스 - 암호 해독 class Solution { public String solution(String cipher, int code) { StringBuilder sb = new StringBuilder(); for(int i=code-1; i 2023. 3. 4. 프로그래머스 - 가위 바위 보 class Solution { public String solution(String rsp) { String answer = ""; int len = rsp.length(); for(int i =0; i 2023. 3. 3. 프로그래머스 - 제곱수 판별하기 class Solution { public int solution(int n) { for(int i=1; i 2023. 3. 3. 프로그래머스 - 개미 군단 class Solution { public int solution(int hp) { int answer = 0; answer = hp/5 + (hp%5)/3 + ((hp%5)%3)/1; return answer; } } 2023. 3. 3. 이전 1 ··· 4 5 6 7 8 9 10 ··· 17 다음 728x90 반응형