From 0af58ca37a65d9d2b3db093f604ce71d8ef6540c Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 9 Oct 2023 21:58:28 -0400 Subject: [PATCH] make it clear that their functions must be templated functions --- labs/07_list_implementation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/07_list_implementation/README.md b/labs/07_list_implementation/README.md index 3558dc3..6a944a8 100644 --- a/labs/07_list_implementation/README.md +++ b/labs/07_list_implementation/README.md @@ -32,7 +32,7 @@ Linked List of NodeA nodes: 1 -> 2 -> 3 -> 4 -> 5 -> nullptr Linked List of NodeB nodes: 1 -> 1.41421 -> 1.73205 -> 2 -> 2.23607 -> nullptr ``` -**Note**: Hardcoding the PrintList() function to do nothing but just print the above two messages is strictly prohibited. Students doing that will be evicted from the lab room. +**Note**: Hardcoding the PrintList() function to just print the above two messages is strictly prohibited. Students doing that will be evicted from the lab room. Also, your functions must be templated functions. **To complete this checkpoint**, show a TA the implementation and the output of your program.