Given an absolute path for a file (Unix-style), simplify it. Or in other words, convert it to the canonical path.

In a UNIX-style file system, a period . refers to the current directory. Furthermore, a double period .. moves the directory up a level. For more information, see: Absolute path vs relative path in Linux/Unix

Note that the returned canonical path must always begin with a slash /, and there must be only a single slash / between two directory names. The last directory name (if it exists) must not end with a trailing /. Also, the canonical path must be the shortest string representing the absolute path.

Example 1:

Input: "/home/"
Output: "/home"
Explanation: Note that there is no trailing slash after the last directory name.

Example 2:

Input: "/../"
Output: "/"
Explanation: Going one level up from the root directory is a no-op, as the root level is the highest level you can go.

Example 3:

Input: "/home//foo/"
Output: "/home/foo"
Explanation: In the canonical path, multiple consecutive slashes are replaced by a single one.

Example 4:

Input: "/a/./b/../../c/"
Output: "/c"

Example 5:

Input: "/a/../../b/../c//.//"
Output: "/c"

Example 6:

Input: "/a//b////c/d//././/.."
Output: "/a/b/c"
class Solution:
def simplifyPath(self, path: str) -> str:
import re
lst = re.split('/+', path)
stack = []
for item in lst:
if item == '..':
if stack:
stack.pop()
elif item and item != '.':
stack.append(item)
else:
continue
res = '/' + '/'.join(stack)
return res

最新文章

  1. C#多线程之基础篇3
  2. Python GIL 多线程机制 (C source code)
  3. JAVA用途
  4. leetcode 124. Binary Tree Maximum Path Sum
  5. linux3.0.4编译LDD中的scull全过程
  6. 自定义控件(视图)1期笔记02:View的绘制流程
  7. 数据结构(分块):[HZOI 2015]easy seq
  8. 访问远程MySQL数据库的方法
  9. vmstat监控工具
  10. prefProvider.kt
  11. java 中对象比较大小
  12. [JavaScript] Frequently used method or solutions for issues
  13. Shell脚本21-40例
  14. vue全局后置钩子afterEach
  15. Java调用Jenkins接口实现远程发版
  16. 【WH】MVC数据分页扩展类
  17. OpenCV——ROI截取、线性混合、通道分离、合并、亮度对比度调整
  18. JQ_开发经验
  19. 贯众云平台脚本编写之判断、循环以及shell命令的使用
  20. HDU 4681 STRING dp+暴力。

热门文章

  1. 2019牛客暑期多校训练营(第七场)A.String【最小表示法】
  2. Python dict 字典 keys和values对换
  3. Django专题之ORM
  4. 追踪tracking
  5. java合并一个文件夹下所有txt文件,输出到另一个txt
  6. html title属性内容换行方法(静态页面)
  7. NSPredicate 应用
  8. jest 测试入门(一)
  9. sqlite如何避免重复建表(获取已经存在的表)
  10. 用hash存数组|得地址|取地址