Skip to content

Commit 5ca6d49

Browse files
authored
Create SimplifyDirectoryPath.py
1 parent b9cfd8c commit 5ca6d49

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
'''
2+
3+
https://www.interviewbit.com/problems/simplify-directory-path/
4+
5+
6+
Given an absolute path for a file (Unix-style), simplify it.
7+
8+
Examples:
9+
10+
path = "/home/", => "/home"
11+
path = "/a/./b/../../c/", => "/c"
12+
13+
Note that absolute path always begin with ‘/’ ( root directory )
14+
Path will not have whitespace characters.
15+
16+
'''
17+
18+
19+
class Solution:
20+
# @param A : string
21+
# @return a strings
22+
23+
def simplifyPath(self, A):
24+
25+
places = [p for p in A.split("/") if p!="." and p!=""]
26+
27+
stack = []
28+
29+
for p in places:
30+
if p == "..":
31+
if len(stack) > 0:
32+
stack.pop()
33+
else:
34+
stack.append(p)
35+
36+
return "/" + "/".join(stack)
37+
38+
39+
40+

0 commit comments

Comments
 (0)