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
- database
- Binary Search
- array
- Stack
- Math
- SQL
- two pointers
- java
- dynamic programming
- Counting
- hash table
- 자바
- 파이썬
- Method
- 코딩테스트
- simulation
- implement
- Number Theory
- geometry
- string
- 구현
- greedy
- sorting
- bit manipulation
- Class
- Binary Tree
- Matrix
- 코테
- Data Structure
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1859. Sorting the Sentence 본문
1. Input
1) 문자열 s
2. Output
1) s에 있는 각 단어들의 끝에 적힌 순서에 맞게 단어들을 재배열한 문자열
3. Constraint
1) 2 <= s.length <= 200
2) s는 영어 대소문자, 공백문자, 숫자 1~9로 이루어져 있다.
3) s에 있는 단어 수는 1~9개이다.
4) 단어들은 공백 문자 1개로 구분되어 있고, 쓸데 없는 공백 문자는 없다.
4. Example
Input: s = "is2 sentence4 This1 a3" -> Output: "This is a sentence"
5. Code
1) 첫 코드(2022/06/12)
String[] sa = s.split(" ");
String result = "";
for(int i=0 ; i<sa.length ; i++){
for(int j=0 ; j<sa.length ; j++){
int index = sa[j].charAt(sa[j].length()-1) - '0';
if(index-1 == i){
result += sa[j].substring(0, sa[j].length()-1) + " ";
break;
}
}
}
return result.substring(0, result.length()-1);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1880. Check if Word Equals Summation of Two Words (0) | 2023.01.07 |
---|---|
[LeetCode/Easy] 1876. Substrings of Size Three with Distinct Characters (0) | 2023.01.07 |
[LeetCode/Easy] 1848. Minimum Distance to the Target Element (0) | 2023.01.07 |
[LeetCode/Easy] 21. Merge Two Sorted Lists (0) | 2023.01.05 |
[LeetCode/Easy] 1844. Replace All Digits with Characters (0) | 2023.01.05 |