From bfa3af534ad64ccb3a657e4b6cbc330425f574fd Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Thu, 5 Oct 2023 17:10:48 -0400 Subject: [PATCH] adding linked list leetcode problem --- lectures/11_list_implementation/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lectures/11_list_implementation/README.md b/lectures/11_list_implementation/README.md index 4330109..eb61009 100644 --- a/lectures/11_list_implementation/README.md +++ b/lectures/11_list_implementation/README.md @@ -79,3 +79,8 @@ variable p. variables must be assigned the value NULL. - If p==head or p==tail, then the pointer adjustment code we just wrote needs to be specialized to removing the first or last node. + +## 11.8 Leetcode Exercises + +- [Leetcode problem 141: Linked List Cycle](https://leetcode.com/problems/linked-list-cycle/). Solution: [p141_linkedlistcycle.cpp](../../leetcode/p141_linkedlistcycle.cpp) +