From 6b9f42ea940468749952f342e7be36d6e126c12f Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 2 Feb 2024 13:27:23 -0500 Subject: [PATCH] adding the poll question --- lectures/08_vector_implementation/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lectures/08_vector_implementation/README.md b/lectures/08_vector_implementation/README.md index 6a87fba..9c04136 100644 --- a/lectures/08_vector_implementation/README.md +++ b/lectures/08_vector_implementation/README.md @@ -220,8 +220,8 @@ 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 -delete f2;                    e) none of the above +f1 = \*f2;                         d) default constructor +delete f2;                         e) none of the above ## 8.15 Leetcode Exercises