Set 05 - Linked Lists

Use Practice Loop if you need a reset.

Problems

ProblemDifficultyPatternVideo
LC 206. Reverse Linked ListEasyIterative/RecursiveVideo
LC 21. Merge Two Sorted ListsEasyTwo PointersVideo
LC 141. Linked List CycleEasyFast/Slow PointerVideo

Deliverables

  • Write a 1-line invariant for each problem.
  • Note 1 edge case or pitfall per problem.
  • Record time-to-first-correct solution.

Notes

  • LC 206: reverse with prev/curr pointers (or recursion).
  • LC 21: merge with dummy head; advance the smaller node.
  • LC 141: fast/slow pointer cycle detection.

Review

  • Time spent + where you got stuck?
  • Biggest mistake or missed edge case?
  • One concrete improvement for next time.

Comments

Share your approach or ask questions

0 comments
?
|
Markdown supported
Sign in to post

Loading comments...