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
- 파이썬
- 구현
- bit manipulation
- hash table
- implement
- 코테
- 자바
- Tree
- Stack
- Binary Tree
- two pointers
- geometry
- 코딩테스트
- Data Structure
- simulation
- Binary Search
- array
- Math
- sorting
- Number Theory
- Matrix
- greedy
- Class
- string
- java
- dynamic programming
- SQL
- database
- Counting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1544. Make The String Great 본문
1. Input
1) 문자열 s
2. Output
1) s를 good string으로 만든 결과
// good string이란
- 같은 문자 2개가 붙어있다면 둘다 소문자이거나 둘다 대문자인 문자열
- 같은 문자 2개가 붙어있는데 하나는 소문자고 하나는 대문자라면 두 문자를 문자열에서 삭제한다.
- 빈 문자열도 good string이다.
3. Constraint
1) 1 <= s.length <= 100
2) s는 영어 대소문자로만 이루어져 있다.
4. Example
Input: s = "abBAcC" -> Output: "“
설명: 여러 방법이 있지만 모두 결과는 빈 문자열이다.
- "abBAcC" -> "aAcC" -> "cC" -> "“
- "abBAcC" -> "aAcC" -> "aA" -> ""
- "abBAcC" -> "abBA" -> "aA" -> "“
5. Code
1) 첫 코드(2022/07/12)
for(int i=0 ; i<=s.length()-2 ; i++){
if(Math.abs(s.charAt(i)-s.charAt(i+1))==32){
s = s.substring(0,i) + s.substring(i+2,s.length());
i = -1;
}
}
return s;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1572. Matrix Diagonal Sum (0) | 2022.12.27 |
---|---|
[LeetCode/Easy] 1550. Three Consecutive Odds (0) | 2022.12.27 |
[LeetCode/Easy] 1534. Count Good Triplets (0) | 2022.12.27 |
[LeetCode/Easy] 1528. Shuffle String (0) | 2022.12.27 |
[LeetCode/Easy] 1523. Count Odd Numbers in an Interval Range (0) | 2022.12.27 |