© 2026 Hashnode
🗓️ Date: January 9, 2026📌 Challenge:🧩 Problem: Intersection of Two Linked Lists – LeetCode #160 (Easy)💻 Topic: Two Pointer, Linked List ✅ Problem Statement (Summary): Goal: Given the heads of two singly linked lists headA and headB, return the n...

I remember the first time I encountered the two-pointer technique in my Data Structures class. My professor threw this problem at us: "Find two numbers in a sorted array that add up to a target." My immediate thought? "Easy! Just use two loops and ch...
