Skip to main content

Command Palette

Search for a command to run...

#DAY 5-Coding Journey

Linked List

Published
1 min readView as Markdown
M

Passionate learner dedicated to acquiring new knowledge and sharing insights to inspire others on their own learning journeys. Join me in exploring diverse topics and fostering a community of knowledge seekers.

LinkedList Leetcode Problems

Today solved some linked problems based on the two-pointer approach. The two-pointer approach involves using two-pointers often called "slow" and "fast,".The slow pointer moves one step at a time (slow = slow.next), while the fast pointer moves two steps at a time (fast = fast.next.next).

Refer https://www.youtube.com/watch?v=70tx7KcMROc&t=5476s.

Happy Coding.