dirent not allowed in the future

This commit is contained in:
Jidong Xiao
2025-03-24 18:36:46 -04:00
committed by JamesFlare
parent a845f0752c
commit eb67680841

View File

@@ -401,7 +401,7 @@ A2: All 33 documents.
- 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 (7 pts)
- Uses data structures which have not been covered in this class. (-7)
- Uses filesystem library (i.e., #include <filesystem> #include <dirent>). (-7)
- Uses filesystem library (i.e., #include <filesystem> or #include <dirent>). (-7)
- Neither std::map nor std::set is used. (-7)
- Paths to all 32 HTML files are manually specified within the program's code. (The paths should be found by the program during runtime) (-5)
- RECURSION (3 pts)