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 | 31 |
Tags
- 파이썬 알고리즘 풀기
- python zip_longest
- 알고리즘풀이
- leetcode 풀기
- 릿코드 풀기
- python xor
- 상가수익률계산기
- 릿코드풀기
- python priority queue
- 코틀린기초
- 릿코드풀이
- LeetCode
- binary search
- python Leetcode
- 파이썬알고리즘풀기
- 파이썬 알고리즘
- 잇츠디모
- python 릿코드
- 파이썬릿코드풀기
- leetcode풀이
- 릿코드
- python sorted
- 파이썬릿코드
- 릿코드 파이썬
- 파이썬알고리즘
- 파이썬 프로그래머스
- 파이썬 릿코드
- leetcode풀기
- 알고리즘풀기
- python 알고리즘
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 71. Simplify Path 본문
반응형
71. Simplify Path
https://leetcode.com/problems/simplify-path/
문제)
솔루션1)
class Solution:
def simplifyPath(self, path: str) -> str:
# any multiple consecutive slashes (i.e. '//') are treated as a single slash '/'
path = path.replace('//', '/')
# The path starts with a single slash '/'
canonical_path = ['/']
for dir_name in path.split('/')[1:]:
if not dir_name:
continue
if dir_name == '..':
if len(canonical_path) > 1:
# 마지막의 디렉토리 이름과 '/'를 제거
canonical_path = canonical_path[:-2]
elif dir_name == '.':
# do nothing
pass
else:
canonical_path.append(dir_name)
canonical_path.append('/')
# the path does not end with a trailing '/
while len(canonical_path) > 1 and canonical_path[-1] == '/':
canonical_path = canonical_path[:-1]
return ''.join(canonical_path)
솔루션2)
discuss를 보니 정말 간결하게 풀었네요.
class Solution:
def simplifyPath(self, path: str) -> str:
stack = []
for dir_name in path.split('/'):
if dir_name == '..':
if stack:
stack.pop()
elif dir_name and dir_name != '.':
stack.append(dir_name)
return '/' + '/'.join(stack)
함께 보면 좋은 글:
https://leetcode.com/problems/simplify-path/discuss/25691/9-lines-of-Python-code
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 146. LRU Cache (0) | 2022.03.26 |
---|---|
LeetCode 풀기 - 895. Maximum Frequency Stack (0) | 2022.03.19 |
LeetCode 풀기 - 2. Add Two Numbers (0) | 2022.03.11 |
LeetCode 풀기 - 2120. Execution of All Suffix Instructions Staying in a Grid (0) | 2022.03.10 |
LeetCode 풀기 - 413. Arithmetic Slices (0) | 2022.03.09 |
Comments