lt and gt no longer needed

This commit is contained in:
Jidong Xiao
2023-09-08 00:48:20 -04:00
parent 81b936a444
commit 6ca81f9389

View File

@@ -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 (lets use int in this example) called vectorname, you can do so by writing
```cpp
std::vector<std::vector<int> > vectorname
std::vector<std::vector<int> > vectorname;
```
and then indexing as usual. *vectorname[0]* will return a vector&lt;int&gt; in this example. The most important detail is to remember to put a space