From 32117826a7f3a73b52e52a3650cdaac4c2909585 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Sun, 11 Feb 2024 23:39:02 -0500 Subject: [PATCH] indentation could be because of the given code, remove it --- 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 d9cdb75..11ce5af 100644 --- a/hws/04_yelp_businesses/README.md +++ b/hws/04_yelp_businesses/README.md @@ -244,7 +244,7 @@ You must do this assignment on your own, as described in the [Collaboration Poli - Function bodies containing more than one statement are placed in the .h file. (okay for templated classes) (-2) - Functions are not well documented or are poorly commented, in either the .h or the .cpp file. (-1) - At least one function is excessively long (i.e., more than 200 lines). (-1) - - Overly cramped, excessive whitespace, or poor indentation. (-1) + - 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 use std::list for the implementation.) (7 pts)