From 4112a366526dc3c76e13decef51fe2268e305f11 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 2 Feb 2024 13:16:12 -0500 Subject: [PATCH] adding the poll question --- lectures/08_vector_implementation/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lectures/08_vector_implementation/README.md b/lectures/08_vector_implementation/README.md index 2146b17..d94c0a2 100644 --- a/lectures/08_vector_implementation/README.md +++ b/lectures/08_vector_implementation/README.md @@ -217,11 +217,11 @@ The destructor is called implicitly when an automatically-allocated object goes Match up the line of code with the function that is called. Each letter is used exactly once. -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 +| 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 | ## 8.15 Leetcode Exercises