leetcode/include/s0160_intersection_of_two_linked_lists.hpp
2023-01-30 20:17:47 +08:00

12 lines
231 B
C++

#ifndef S0160_INTERSECTION_OF_TWO_LINKED_LISTS_HPP
#define S0160_INTERSECTION_OF_TWO_LINKED_LISTS_HPP
#include "structures.hpp"
class S0160 {
public:
ListNode *getIntersectionNode(ListNode *headA, ListNode *headB);
};
#endif