Intersection of Two Linked Lists at Airbnb
Easy63.2% acceptance
This problem has 75.0% frequency at Airbnb.
Problem Description
Given the heads of two singly linked-lists `headA` and `headB`, return _the node at which the two lists intersect_. If the two linked lists have no intersection at all, return `null`. For example, the following two linked lists begin to intersect at node `c1`: ![](https://assets.leetcode.com/uploa...
Read full problem and hints