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
- Stack
- SQL
- greedy
- Math
- 코딩테스트
- Counting
- 코테
- implement
- string
- Binary Search
- hash table
- sorting
- Binary Tree
- two pointers
- 파이썬
- java
- Data Structure
- dynamic programming
- bit manipulation
- database
- array
- Method
- Class
- Tree
- Matrix
- simulation
- geometry
- 자바
- Number Theory
- 구현
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1678. Goal Parser Interpretation 본문
1. Input
1) 문자열 command
2. Output
1) Goal Parser를 이용해서 command를 해석한 결과 문자열
// Goal Parser의 해석 규칙
- “G”는 “G”이다.
- “()”는 “o”이다.
- “(al)”은 “al”이다.
3. Constraint
1) 1 <= command.length <= 100
2) command는 “G”, “()”, “(al)”로 이루어져 있다.
4. Example
Input: command = "G()()()()(al)" -> Output: "Gooooal“
Input: command = "(al)G(al)()()G" -> Output: "alGalooG"
5. Code
1) 첫 코드(2022/06/03)
String[] input = command.split("");
String result = "";
for(int i=0 ; i<input.length ; i++){
if(input[i].equals("G")) result += "G";
else if(input[i].equals("(")){
if(input[i+1].equals(")")){
result += "o"; i++;
} else{
result += "al"; i+=2;
}
}
} // for i
return result;
2) 한 줄로 줄이면 어떨까?(2023/01/02)
return command.replaceAll("\\(al\\)","al").replaceAll("\\(\\)","o");
- 메모리 사용량 차이는 없었고, 시간만 약간 단축됐다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1688. Count of Matches in Tournament (0) | 2023.01.02 |
---|---|
[LeetCode/Easy] 1684. Count the Number of Consistent Strings (0) | 2023.01.02 |
[LeetCode/Easy] 1672. Richest Customer Wealth (0) | 2023.01.02 |
[LeetCode/Easy] 884. Uncommon Words from Two Sentences (0) | 2022.12.30 |
[LeetCode/Easy] 868. Binary Gap (0) | 2022.12.30 |