Skip to content

Commit af3ca8d

Browse files
kkty39labuladong
authored andcommitted
remove fixes in another problem
1 parent ca21eab commit af3ca8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

多语言解法代码/solution_code.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53157,7 +53157,7 @@ func deleteDuplicates(head *ListNode) *ListNode {
5315753157
```java
5315853158
// by labuladong (java)
5315953159
class Solution {
53160-
public ListNode deleteDuplicates(ListNode head) {
53160+
public deleteDuplicates(ListNode head) {
5316153161
if (head == null) return null;
5316253162
ListNode slow = head, fast = head;
5316353163
while (fast != null) {

0 commit comments

Comments
 (0)