Hello coders, today we are going to solve Day 8: Dictionaries and Maps HackerRank Solution in C++, Java and Python.

Objective
Today, we’re learning about Key-Value pair mappings using a Map or Dictionary data structure.
Task
Given n names and phone numbers, assemble a phone book that maps friends’ names to their respective phone numbers. You will then be given an unknown number of names to query your phone book for. For each name queried, print the associated entry from your phone book on a new line in the form name=phoneNumber
; if an entry for name is not found, print Not found
instead.
Note: Your phone book should be a Dictionary/Map/HashMap data structure.
Input Format
The first line contains an integer, n, denoting the number of entries in the phone book.
Each of the n subsequent lines describes an entry in the form of 2 space-separated values on a single line. The first value is a friend’s name, and the second value is an 8-digit phone number.
After the n lines of phone book entries, there are an unknown number of lines of queries. Each line (query) contains a name to look up, and you must continue reading lines until there is no more input.
Note: Names consist of lowercase English alphabetic letters and are first names only.
Constraints
- 1 <= n <= 105
- 1 <= queries <= 105
Output Format
On a new line for each query, print Not found
if the name has no corresponding entry in the phone book; otherwise, print the full name and phoneNumber in the format name=phoneNumber
.
Sample Input
3
sam 99912222
tom 11122222
harry 12299933
sam
edward
harry
Sample Output
sam=99912222
Not found
harry=12299933
Explanation
We add the following n = 3 (Key,Value) pairs to our map so it looks like this:
phoneBook = {(sam, 99912222), (tom, 11122222), (harry, 12299933)}
We then process each query and print key=value
if the queried key is found in the map; otherwise, we print Not found
.
Query 0: sam
Sam is one of the keys in our dictionary, so we print sam=99912222
.
Query 1: edward
Edward is not one of the keys in our dictionary, so we print Not found
.
Query 2: harry
Harry is one of the keys in our dictionary, so we print harry=12299933
.
Solution – Day 8: Dictionaries and Maps
C++
#include <iostream> #include <map> using namespace std; int main() { std::map<string, string> phoneBook; int n; cin >> n; // Read names and numbers, add to phoneBook: for(int i = 0; i < n; i++){ string name; string phone; cin >> name; cin >> phone; phoneBook[name] = phone; } // Execute queries: std::map<string,string>::iterator it; string query; while( cin >> query ){ it = phoneBook.find(query); if ( it != phoneBook.end() ){ // key is found in phoneBook cout << it->first << "=" << it->second << '\n'; } else{ // the iterator hit the end of the phone book without finding key cout << "Not found" << '\n'; } } return 0; }
Java
import java.util.*; import java.io.*; class Solution{ public static void main(String []argh){ Scanner in = new Scanner(System.in); Map<String,Integer> Contact =new HashMap<String,Integer>(); int n = in.nextInt(); for(int i = 0; i < n; i++){ String name = in.next(); int phone = in.nextInt(); Contact.put(name,phone); } while(in.hasNext()){ String s = in.next(); if(Contact.containsKey(s)){ System.out.println(s+"="+Contact.get(s)); } else{ System.out.println("Not found"); } } in.close(); } }
Python
import sys # Read input and assemble Phone Book n = int(input()) phoneBook = {} for i in range(n): contact = input().split(' ') phoneBook[contact[0]] = contact[1] # Process Queries lines = sys.stdin.readlines() for i in lines: name = i.strip() if name in phoneBook: print(name + '=' + str( phoneBook[name] )) else: print('Not found')
Disclaimer: The above Problem (Day 8: Dictionaries and Maps) is generated by Hacker Rank but the Solution is Provided by CodingBroz. This tutorial is only for Educational and Learning Purpose.