-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJava-Map.java
45 lines (38 loc) · 1.09 KB
/
Java-Map.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//Complete this code or write your own from scratch
import java.util.*;
import java.io.*;
class Solution{
public static void main(String []argh)
{
Scanner in = new Scanner(System.in);
int n=in.nextInt();
in.nextLine();
Map<String, Integer> phonebook = new HashMap<String, Integer>();
for(int i=0;i<n;i++)
{
String name=in.nextLine();
int phone=in.nextInt();
in.nextLine();
phonebook.put(name, phone);
}
while(in.hasNext())
{
String s=in.nextLine();
//boolean flag = false;
//for(Map.Entry me : phonebook.entrySet())
{
//if(me.getKey().equals(s))
if(phonebook.containsKey(s))
{
System.out.println(s+"="+phonebook.get(s));
//flag = true;
//break;
}
else
System.out.println("Not found");
}
//if(flag==false)
// System.out.println("Not found");
}
}
}