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
- simulation
- database
- Stack
- greedy
- java
- Binary Tree
- bit manipulation
- Number Theory
- Class
- 구현
- 코딩테스트
- Tree
- array
- geometry
- 자바
- 코테
- string
- Data Structure
- Matrix
- Binary Search
- Counting
- implement
- Method
- Math
- SQL
- 파이썬
- hash table
- two pointers
- dynamic programming
- sorting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 917. Reverse Only Letters 본문
1. Input
1) String s
2. Output
1) s에서 알파벳만 순서를 뒤집은 결과를 반환
- 나머지 문자들은 제자리에 있어야 한다.
3. Constraint
1) 1 <= s.length <= 100
2) s에는 [33, 122]의 아스키 코드값을 가지는 문자만 있다.
3) s에는'\"'나 '\\'는 없다.
4. Example
Input: s = "a-bC-dEf-ghIj" -> Output: "j-Ih-gfE-dCba"
5. Code
1) 첫 코드(2023/03/31)
char[] c = s.toCharArray();
int front=0, back=s.length()-1;
while(front<back){
if(!Character.isAlphabetic((int)c[front])){
front++; continue;
}
if(!Character.isAlphabetic((int)c[back])){
back--; continue;
}
char tmp = c[front];
c[front++] = c[back];
c[back--] = tmp;
}
return new String(c);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 989. Add to Array-Form of Integer (0) | 2023.04.03 |
---|---|
[LeetCode/Easy] 933. Number of Recent Calls (0) | 2023.03.31 |
[백준 온라인 저지] 11050. 이항 계수 1 (0) | 2023.03.31 |
[백준 온라인 저지] 10872. 팩토리얼 (0) | 2023.03.31 |
[백준 온라인 저지] 24723. 녹색거탑 (0) | 2023.03.31 |