Skip to content

Commit 29db49b

Browse files
committed
Update
1 parent b91f539 commit 29db49b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

algorithms/intersection-of-two-linked-lists.js

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
* @return {ListNode}
1414
*/
1515
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
1716
if (!headA || !headB) {
1817
return null;
1918
}

0 commit comments

Comments
 (0)