From 96cd6c900d3eb42c402884146e0a4ab0ffca45f4 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 31 Oct 2023 16:24:16 -0400 Subject: [PATCH] make it clear in the rubric that file system library is not allowed --- hws/07_search_engine/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/hws/07_search_engine/README.md b/hws/07_search_engine/README.md index 5c4d3ff..f3c35b9 100644 --- a/hws/07_search_engine/README.md +++ b/hws/07_search_engine/README.md @@ -408,6 +408,7 @@ You can test (but not view) the instructor's code here: [instructor code](http:/ - Contains useless comments like commented-out code, terminal commands, or silly notes. (-1) - DATA REPRESENTATION (7 pts) - Uses data structures which have not been covered in this class. (-7) + - Uses filesystem library (i.e., #include <filesystem> ). (-7) - Neither std::map nor std::set is used. (-7) - Member variables are public. (-2) - RECURSION (3 pts)