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) {