
leetcode
文章平均质量分 56
weixin_38282689
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LeetCode82 Remove Duplicates from Sorted List II 删除链表重复项II
题干如下:Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.Example 1:Input: 1->2->3->3->4->4->5Output: 1-...原创 2018-12-03 17:19:11 · 128 阅读 · 0 评论 -
LeetCode71 Simplify Path 简化路径
LeetCode71 Simplify Path 简化路径题干如下Given an absolute path for a file (Unix-style), simplify it.For example,path = “/home/”, => “/home”path = “/a/./b/…/…/c/”, => “/c”path = “/a/原创 2018-11-29 16:32:54 · 136 阅读 · 0 评论