We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
题解 148 中出现了这样一段重复的函数,删掉mergeTwoLists148就好了。sortList函数调用的函数名称也要对应改一下。
mergeTwoLists148
sortList
func mergeTwoLists148(l1 *ListNode, l2 *ListNode) *ListNode { if l1 == nil { return l2 } if l2 == nil { return l1 } if l1.Val < l2.Val { l1.Next = mergeTwoLists(l1.Next, l2) return l1 } l2.Next = mergeTwoLists(l1, l2.Next) return l2 } func mergeTwoLists(l1 *ListNode, l2 *ListNode) *ListNode { if l1 == nil { return l2 } if l2 == nil { return l1 } if l1.Val < l2.Val { l1.Next = mergeTwoLists(l1.Next, l2) return l1 } l2.Next = mergeTwoLists(l1, l2.Next) return l2 }
The text was updated successfully, but these errors were encountered:
@wingsxdu 感谢你的提醒。已经修复了。
Sorry, something went wrong.
No branches or pull requests
题解 148 中出现了这样一段重复的函数,删掉
mergeTwoLists148
就好了。sortList
函数调用的函数名称也要对应改一下。The text was updated successfully, but these errors were encountered: