Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Method
- Data Structure
- Number Theory
- implement
- 자바
- simulation
- dynamic programming
- database
- bit manipulation
- Counting
- 구현
- string
- geometry
- SQL
- greedy
- Binary Search
- array
- Stack
- two pointers
- hash table
- 파이썬
- Class
- java
- sorting
- Matrix
- 코딩테스트
- 코테
- Math
- Binary Tree
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 접미사 배열 본문
1. Input, Output, Example
- my_string의 모든 접미사를 사전순으로 정렬한 문자열 배열을 반환
2. Constraint
1) my_string은 알파벳 소문자로만 이루어져 있다.
2) 1 ≤ my_string의 길이 ≤ 100
3. Code
1) 첫 코드(2023/04/27)
import java.util.*;
class Solution {
public String[] solution(String my_string) {
int n = my_string.length();
String[] answer = new String[n];
for(int i=0 ; i<my_string.length() ; i++)
answer[i] = my_string.substring(n-1-i,n);
Arrays.sort(answer);
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 간단한 식 계산하기 (0) | 2023.04.27 |
---|---|
[프로그래머스/Lv.0] 배열의 원소만큼 추가하기 (0) | 2023.04.27 |
[프로그래머스/Lv.0] 뒤에서 5등까지 (0) | 2023.04.27 |
[프로그래머스/Lv.0] 배열의 길이에 따라 다른 연산하기 (0) | 2023.04.27 |
[LeetCode/Easy] 2032. Two Out of Three (0) | 2023.04.27 |