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
- 코딩테스트
- string
- java
- Tree
- Data Structure
- 파이썬
- Matrix
- array
- database
- SQL
- Binary Tree
- Binary Search
- Method
- bit manipulation
- dynamic programming
- 자바
- Class
- Math
- simulation
- geometry
- sorting
- 구현
- greedy
- Stack
- hash table
- Number Theory
- two pointers
- 코테
- Counting
- implement
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 482. License Key Formatting 본문
1. Input
1) String s
2) int k
2. Output
1) s를 n개의 그룹으로 나누고, 그룹 사이에는 ‘-’를 1개씩 넣은 문자열을 반환
- 이때 첫 번째 그룹을 제외한 나머지 그룹은 반드시 1개 이상 k개 이하의 문자가 들어가야 한다.
3. Constraint
1) 1 <= s.length <= 10^5
2) 1 <= k <= 10^4
3) s는 영어 소문자와 ‘-’로 이루어져 있다.
4. Example
Input: s = "5F3Z-2e-9-w", k = 4 -> Output: "5F3Z-2E9W"
Input: s = "2-5g-3-J", k = 2 -> Output: "2-5G-3J"
5. Code
1) 첫 코드(2023/05/19)
class Solution {
public String licenseKeyFormatting(String s, int k) {
StringBuilder sb = new StringBuilder();
int count = 0;
for(int i=s.length()-1 ; i>=0 ; i--){
char c = Character.toUpperCase(s.charAt(i));
if(c!='-'){
sb.append(c);
count++;
}
if(count==k){
sb.append('-');
count = 0;
}
}
if(sb.length()==0)
return "";
if(sb.charAt(sb.length()-1)=='-')
sb = sb.deleteCharAt(sb.length()-1);
return sb.reverse().toString();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 2752. 세수정렬 (0) | 2023.05.20 |
---|---|
[LeetCode/Easy] 485. Max Consecutive Ones (0) | 2023.05.19 |
[LeetCode/Easy] 459. Repeated Substring Pattern (0) | 2023.05.19 |
[LeetCode/Easy] 415. Add Strings (0) | 2023.05.19 |
[LeetCode/Easy] 392. Is Subsequence (0) | 2023.05.18 |