We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b91f539 commit 29db49bCopy full SHA for 29db49b
algorithms/intersection-of-two-linked-lists.js
@@ -13,7 +13,6 @@
13
* @return {ListNode}
14
*/
15
var getIntersectionNode = function (headA, headB) {
16
- // reference: https://programmercarl.com/%E9%9D%A2%E8%AF%95%E9%A2%9802.07.%E9%93%BE%E8%A1%A8%E7%9B%B8%E4%BA%A4.html#javascript
17
if (!headA || !headB) {
18
return null;
19
}
0 commit comments