We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9cfd8c commit 5ca6d49Copy full SHA for 5ca6d49
Stacks And Queues/SimplifyDirectoryPath.py
@@ -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