Skip to content

Commit ddb9df1

Browse files
committed
Update 0083. 删除排序链表中的重复元素.md
1 parent c286292 commit ddb9df1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Solutions/0083. 删除排序链表中的重复元素.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@ class Solution:
5151
return head
5252
```
5353

54+
### 思路 1:复杂度分析
55+
56+
- **时间复杂度**:$O(n)$。其中 $n$ 为链表长度。
57+
- **空间复杂度**:$O(1)$。

0 commit comments

Comments
 (0)