From af3ca8d98257d6930b7b49bc5a7a63441f811157 Mon Sep 17 00:00:00 2001 From: kkty39 Date: Sun, 4 Jun 2023 16:44:18 -0700 Subject: [PATCH] remove fixes in another problem --- 多语言解法代码/solution_code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/多语言解法代码/solution_code.md b/多语言解法代码/solution_code.md index 3de3bfe..c1b39bb 100644 --- a/多语言解法代码/solution_code.md +++ b/多语言解法代码/solution_code.md @@ -53157,7 +53157,7 @@ func deleteDuplicates(head *ListNode) *ListNode { ```java // by labuladong (java) class Solution { - public ListNode deleteDuplicates(ListNode head) { + public deleteDuplicates(ListNode head) { if (head == null) return null; ListNode slow = head, fast = head; while (fast != null) {