From 6ca81f9389b810a9b9ffe9d8270d989be4866bf2 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 8 Sep 2023 00:48:20 -0400 Subject: [PATCH] lt and gt no longer needed --- hws/02_schedule_classes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/02_schedule_classes/README.md b/hws/02_schedule_classes/README.md index a6ff5b3..7707541 100644 --- a/hws/02_schedule_classes/README.md +++ b/hws/02_schedule_classes/README.md @@ -121,7 +121,7 @@ and at the very bottom of your .h file, add this line: If you want to make a vector of vectors of a type (let’s use int in this example) called vectorname, you can do so by writing ```cpp -std::vector<std::vector<int> > vectorname +std::vector > vectorname; ``` and then indexing as usual. *vectorname[0]* will return a vector<int> in this example. The most important detail is to remember to put a space