题解 148:删除重复函数
beihai0xff opened this issue · 1 comments
beihai0xff commented
题解 148 中出现了这样一段重复的函数,删掉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
}
halfrost commented
@wingsxdu 感谢你的提醒。已经修复了。