Skip to content

Commit

Permalink
fix build issue #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebazhanov committed Apr 10, 2022
1 parent 99e7f52 commit 3d6094f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions c++/c++quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::string, int> marks {{"Sinead", 9}, {"Alex", 8}, {"Emilie", 7} }; %}
```
{% std::map<std::string, int> marks {{"Sinead", 9}, {"Alex", 8}, {"Emilie", 7}, }; %}
- [x] `marks["Sinead"] = 22`
- [ ] `marks["Sinead"].22`
Expand Down

0 comments on commit 3d6094f

Please sign in to comment.