728x90 반응형 알고리즘 문제풀이/Programmers - 자바146 프로그래머스 - 중앙값 구하기 import java.util.Arrays; class Solution { public int solution(int[] array) { int answer = 0; Arrays.sort(array); answer = array[array.length/2]; return answer; } } 2023. 2. 23. 프로그래머스 - 편지 class Solution { public int solution(String message) { return message.length()*2; } } 2023. 2. 23. 프로그래머스 - 짝수는 싫어요 class Solution { public int[] solution(int n) { int[] answer = {}; int count = 0; for(int i=1; i 2023. 2. 23. 프로그래머스 - 배열의 유사도 class Solution { public int solution(String[] s1, String[] s2) { int answer = 0; for(int i=0; i 2023. 2. 23. 이전 1 ··· 26 27 28 29 30 31 32 ··· 37 다음 728x90 반응형