From 3d6094f838327fd81d1f36548672e4387b1c6029 Mon Sep 17 00:00:00 2001 From: ebazhanov Date: Sun, 10 Apr 2022 11:45:58 +0200 Subject: [PATCH] fix build issue #3 --- c++/c++quiz.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/c++/c++quiz.md b/c++/c++quiz.md index c4e26f3c81..ff5368f356 100755 --- a/c++/c++quiz.md +++ b/c++/c++quiz.md @@ -1290,9 +1290,7 @@ class my_class{ #### Q79. Given these records in a map, how will you update the value for the key "Sinead" to 22? -``` -{% std::map marks {{"Sinead", 9}, {"Alex", 8}, {"Emilie", 7} }; %} -``` + {% std::map marks {{"Sinead", 9}, {"Alex", 8}, {"Emilie", 7}, }; %} - [x] `marks["Sinead"] = 22` - [ ] `marks["Sinead"].22`