We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c286292 commit ddb9df1Copy full SHA for ddb9df1
Solutions/0083. 删除排序链表中的重复元素.md
@@ -51,3 +51,7 @@ class Solution:
51
return head
52
```
53
54
+### 思路 1:复杂度分析
55
+
56
+- **时间复杂度**:$O(n)$。其中 $n$ 为链表长度。
57
+- **空间复杂度**:$O(1)$。
0 commit comments