728x90 반응형 알고리즘 문제풀이/Programmers - 자바146 프로그래머스 - 크기가 작은 부분문자열 import java.util.*; class Solution { public int solution(String t, String p) { int answer = 0; int len = p.length(); String[] ars1 = t.split(""); for(int i=0; i 2023. 3. 30. 프로그래머스 - 두 개 뽑아서 더하기 import java.util.*; class Solution { public int[] solution(int[] numbers) { HashSet set = new HashSet(); for(int i=0; i 2023. 3. 29. 프로그래머스 - K번째수 import java.util.*; class Solution { public int[] solution(int[] array, int[][] commands) { int[] answer = new int[commands.length]; for(int i=0; i 2023. 3. 29. 프로그래머스 - 문자열 내 마음대로 정렬하기 import java.util.*; class Solution { public String[] solution(String[] strings, int n) { int len = strings.length; String[] answer = new String[len]; for(int i=0; i 2023. 3. 29. 이전 1 2 3 4 5 6 7 ··· 37 다음 728x90 반응형