728x90 반응형 분류 전체보기273 프로그래머스 - 배열의 유사도 class Solution { public int solution(String[] s1, String[] s2) { int answer = 0; for(int i=0; i 2023. 2. 23. 프로그래머스 - 순서쌍의 개수 class Solution { public int solution(int n) { int answer = 0; for(int i = 1; i 2023. 2. 23. 프로그래머스 - 중복된 숫자 개수 class Solution { public int solution(int[] array, int n) { int answer = 0; for(int i=0; i 2023. 2. 23. 프로그래머스 - 배열 두배 만들기 class Solution { public int[] solution(int[] numbers) { int[] answer = new int[numbers.length]; for(int i=0; i 2023. 2. 23. 이전 1 ··· 58 59 60 61 62 63 64 ··· 69 다음 728x90 반응형