From dbb5e7148da4afa3ff51331cc81b07fd41e0b05b Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Sun, 11 Feb 2024 20:17:35 -0500 Subject: [PATCH] not dynamic memory, just std::list --- hws/04_yelp_businesses/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/04_yelp_businesses/README.md b/hws/04_yelp_businesses/README.md index 8f86ff9..d9cdb75 100644 --- a/hws/04_yelp_businesses/README.md +++ b/hws/04_yelp_businesses/README.md @@ -247,7 +247,7 @@ You must do this assignment on your own, as described in the [Collaboration Poli - Overly cramped, excessive whitespace, or poor indentation. (-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 use dynamic memory for the implementation.) (7 pts) +- DATA REPRESENTATION (Must use std::list for the implementation.) (7 pts) - No credit (significantly incomplete implementation). (-7) - Does not use std::list to store the matchng businesses. (-7) - Uses data structures which have not been covered in this class. (-7)