728x90 반응형 알고리즘 문제풀이/Programmers - 자바146 프로그래머스 - 소인수분해 import java.util.*; class Solution { public int[] solution(int n) { List answer = new ArrayList(); List arrayList = new ArrayList(); int number = n; while(true){ for(int i=2; i 2023. 3. 20. 프로그래머스 - 이진수 더하기 class Solution { public String solution(String bin1, String bin2) { String answer = ""; int num1 = Integer.parseInt(bin1, 2); int num2 = Integer.parseInt(bin2, 2); answer = Integer.toBinaryString(num1+num2); return answer; } } 2023. 3. 19. 프로그래머스 - 외계어 사전 class Solution { public int solution(String[] spell, String[] dic) { int answer = 2; for(int i=0; i 2023. 3. 19. 프로그래머스 - 삼각형의 완성조건 (2) import java.util.*; class Solution { public int solution(int[] sides) { int answer = 0; int num = 0; Arrays.sort(sides); for(int i=1; i i){ if(sides[0] + i > sides[1]){ answer++; } } } return answer; } } 2023. 3. 19. 이전 1 ··· 15 16 17 18 19 20 21 ··· 37 다음 728x90 반응형