728x90
반응형
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<len; i++){
strings[i] = strings[i].charAt(n) + strings[i];
}
Arrays.sort(strings);
for(int i=0; i<len; i++){
answer[i] = strings[i].substring(1);
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 두 개 뽑아서 더하기 (0) | 2023.03.29 |
---|---|
프로그래머스 - K번째수 (0) | 2023.03.29 |
프로그래머스 - [1차] 비밀지도 (1) | 2023.03.28 |
프로그래머스 - 최소직사각형 (0) | 2023.03.28 |
프로그래머스 - 삼총사 (0) | 2023.03.28 |