From 8c639eb9370fe86297d2cbeaefd35429b992e269 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 9 Feb 2024 13:39:56 -0500 Subject: [PATCH] put the cpp code in the right place --- lectures/10_linked_lists/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/10_linked_lists/README.md b/lectures/10_linked_lists/README.md index 6bdb959..2123870 100644 --- a/lectures/10_linked_lists/README.md +++ b/lectures/10_linked_lists/README.md @@ -144,10 +144,10 @@ assert (*itr == 100); // might seem ok... but rewrite the code to avoid this! What is the output of this program? +```cpp #include #include -```cpp int main(){ std::list lst;