FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java-Hackerrank-Solutions/Java/Data Structures/JavaMap.java at main · Manush54/Java-Hackerrank-Solutions · GitHub
Manush54
/
Java-Hackerrank-Solutions
Public
Notifications
You must be signed in to change notification settings
Fork
9
Star
21
Code
Issues
0
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java-Hackerrank-Solutions
/
Java
/
Data Structures
/
JavaMap.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (26 loc) · 985 Bytes
Breadcrumbs
Java-Hackerrank-Solutions
/
Java
/
Data Structures
/
JavaMap.java
Copy path
File metadata and controls
31 lines (26 loc) · 985 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//Complete this code or write your own from scratch
import
java
.
io
.
BufferedReader
;
import
java
.
io
.
IOException
;
import
java
.
io
.
InputStreamReader
;
import
java
.
util
.*;
class
JavaMap
{
public
static
void
main
(
String
[]
argh
)
throws
NumberFormatException
,
IOException
{
BufferedReader
br
=
new
BufferedReader
(
new
InputStreamReader
(
System
.
in
));
int
n
=
Integer
.
parseInt
(
br
.
readLine
());
HashMap
<
String
,
Integer
>
phonebook
=
new
HashMap
<
String
,
Integer
>();
for
(
int
i
=
0
;
i
<
n
;
i
++) {
String
name
=
br
.
readLine
();
int
phone
=
Integer
.
parseInt
(
br
.
readLine
());
phonebook
.
put
(
name
,
phone
);
}
while
(
br
.
readLine
() !=
null
) {
String
s
=
br
.
readLine
();
Integer
ph_num
=
phonebook
.
get
(
s
);
if
(
ph_num
==
null
) {
System
.
out
.
println
(
"Not found"
);
}
else
{
System
.
out
.
printf
(
"%s=%d
\n
"
,
s
,
ph_num
);
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL