BM8 链表中倒数最后k个结点
2023/9/13小于 1 分钟
BM8 链表中倒数最后k个结点
题目链接
题目描述
刷题思路
代码实现
/* function ListNode(x){
this.val = x;
this.next = null;
} */
/**
* 【简单】 两个链表的第一个公共结点
*/
function findFirstCommonNode(pHead1, pHead2) {
console.log(pHead1, pHead2)
}
module.exports = {
findFirstCommonNode,
}
一些建议
更新日志
2024/7/29 15:43
查看所有更新日志
5a2b2
-于c0f2d
-于06596
-于9b9e4
-于c374b
-于b0275
-于5f1e1
-于17448
-于2b8a3
-于