BM11 链表相加(二)
2023/9/16小于 1 分钟
BM11 链表相加(二)
题目链接
题目描述
刷题思路
代码实现
export function ListNode(x) {
this.val = x
this.next = null
}
/**
* @param head1 ListNode类
* @param head2 ListNode类
*/
export function addInList(head1, head2) {
console.log(head1, head2)
}
一些建议
更新日志
2024/7/28 10:06
查看所有更新日志
c0f2d
-于06596
-于9b9e4
-于c374b
-于b0275
-于5f1e1
-于ee71d
-于