indentation could be because of the given code, remove it

This commit is contained in:
Jidong Xiao
2024-02-11 23:39:02 -05:00
parent dbb5e7148d
commit 32117826a7

View File

@@ -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)