From 19a47c61e07df52ead2a9962947e3df527468eda Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Sat, 24 Feb 2024 20:16:59 -0500 Subject: [PATCH] it's 6 not 7 --- hws/05_online_dating/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hws/05_online_dating/README.md b/hws/05_online_dating/README.md index 0e85dc3..717ed8c 100644 --- a/hws/05_online_dating/README.md +++ b/hws/05_online_dating/README.md @@ -300,9 +300,9 @@ You must do this assignment on your own, as described in the [Collaboration Poli - Overly cramped. (-1) - Poor file organization: Puts more than one class in a file (okay for very small helper classes) (-1) - Poor choice of variable names: non-descriptive names (e.g. 'vec', 'str', 'var'), single-letter variable names (except single loop counter), etc. (-2) - - DATA REPRESENTATION (Must create and use homemade linked lists for the implementation.) (7 pts) - - No credit (significantly incomplete implementation). (-7) - - Uses std::list, or data structures which have not been covered in this class. (-7) + - DATA REPRESENTATION (Must create and use homemade linked lists for the implementation.) (6 pts) + - No credit (significantly incomplete implementation). (-6) + - Uses std::list, or data structures which have not been covered in this class. (-6) - Defines/Uses a list class. (-5) - Defines/Uses an iterator class (okay to use iterators to iterate through other containers such as vectors). (-5) - Does not use homemade linked lists (which consist of a chain of nodes) to store all the users. (-5)