Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion HashMaps/Inbuilt_HashMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,14 @@ int main() {
cout << ourmap.at("abc") << endl;

//cout << ourmap.at("ghi") << endl;
// cout << "size : " << ourmap.size() << endl;
// cout << ourmap["ghi"] << endl;
// cout << "size : " << ourmap.size() << endl;

cout << "size : " << ourmap.size() << endl;
cout << ourmap["ghi"] << endl;
cout << "size : " << ourmap.size() << endl;

// check Presense
if (ourmap.count("ghi") > 0) {
cout << "ghi is present" << endl;
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Full course -stored in managed way.

I use this repository to store the solutions of problems which I solve in C++ language .

Repository for storing implementations and solutions of Assignments and Test questions in C++.

Full course -stored in managed way.

I use this repository to store the solutions of problems which I solve in C++ language .

-------------------------------------------------------------------------------------------------------------------------------------------

Note: If you find any bugs in the code or have any doubts regarding the codes feel free to raise an issue or a PR.
Note: