diff --git a/lectures/08_vector_implementation/README.md b/lectures/08_vector_implementation/README.md index ad80c41..0b73962 100644 --- a/lectures/08_vector_implementation/README.md +++ b/lectures/08_vector_implementation/README.md @@ -220,7 +220,7 @@ Match up the line of code with the function that is called. Each letter is used Foo f1;          a) assignment operator Foo\* f2;          b) destructor f2 = new Foo(f1);          c) copy constructor -f1 = \*f2;          d) default constructor +f1 = \*f2;          d) default constructor delete f2;          e) none of the above ## 8.15 Leetcode Exercises