Problem
Given the heads of two singly linked lists that may merge at some node, return the node where they intersect, or null if they never do.
Input / Output
null.Constraints
Example
A: a1 -> a2 -> c1 -> c2 -> c3
B: b1 -> c1 -> c2 -> c3
intersection -> c1