728x90 반응형 전체 글273 프로그래머스 - 3진법 뒤집기 class Solution { public int solution(int n) { int answer = 0; String[] num = Integer.toString(n, 3).split(""); for(int i=0; i 2023. 3. 27. 프로그래머스 - 같은 숫자는 싫어 import java.util.*; public class Solution { public int[] solution(int []arr) { int num = arr[0]; int count = 1; for(int i=1; i 2023. 3. 27. 프로그래머스 - 최대공약수와 최소공배수 class Solution { public int[] solution(int n, int m) { int[] answer = new int[2]; int max = 0; if(n>m){ for(int i=1; i 2023. 3. 27. 프로그래머스 - 직사각형 별찍기 import java.util.Scanner; class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); for(int i=0; i 2023. 3. 27. 이전 1 ··· 12 13 14 15 16 17 18 ··· 69 다음 728x90 반응형