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
- SQL
- 자바
- Data Structure
- hash table
- Binary Tree
- Stack
- 코테
- Number Theory
- java
- Tree
- dynamic programming
- sorting
- string
- two pointers
- 파이썬
- Class
- bit manipulation
- simulation
- implement
- database
- Math
- greedy
- 코딩테스트
- 구현
- Method
- array
- Counting
- Binary Search
- geometry
- Matrix
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1598. Crawler Log Folder 본문
1. Input
1) String[] logs
- 폴더 이동에 대한 연산자가 담겨 있다.
2. Output
1) 아래 규칙에 따라 폴더를 이동하고 난 후, 해당 위치에서 main까지 가는데 필요한 최소 이동횟수를 반환
- ../ : 상위 폴더로 이동. 이미 main이라면 움직이지 않는다.
- ./ : 이동하지 않는다.
- x/ : 하위 폴더 중 이름이 x인 폴더로 이동한다. 이 연산이 시행될 때 폴더 x는 반드시 존재한다.
3. Constraint
1) 1 <= logs.length <= 10^3
2) 2 <= logs[i].length <= 10
3) logs의 문자열은 영어 소문자, 점(.), 슬래쉬(/)로만 이루어져 있다.
4) logs의 문자열은 위에서 언급한 3가지의 패턴만 있다.
5) 폴더이름(x)에 점이나 슬래쉬는 들어가지 않는다.
4. Example
Input: logs = ["d1/","d2/","../","d21/","./"] -> Output: 2
5. Code
1) 첫 코드(2023/04/13)
Stack<String> s = new Stack<>();
for(String op : logs){
switch(op){
case "./": break;
case "../": if(!s.empty()) s.pop(); break;
default: s.push(op);
}
}
return s.size();
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1646. Get Maximum in Generated Array (0) | 2023.04.15 |
---|---|
[LeetCode/Easy] 1588. Sum of All Odd Length Subarrays (0) | 2023.04.13 |
[LeetCode/Easy] 1592. Rearrange Spaces Between Words (0) | 2023.04.13 |
[LeetCode/Easy] 1582. Special Positions in a Binary Matrix (0) | 2023.04.13 |
[LeetCode/Easy] 1576. Replace All ?'s to Avoid Consecutive Repeating Characters (0) | 2023.04.13 |