You are viewing a single comment's thread. Return to all comments →
my code:
//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); HashMap dict = new HashMap<>();
int n=in.nextInt(); in.nextLine(); for(int i=0;i<n;i++) { String name=in.nextLine(); int phone=in.nextInt(); dict.put(name, phone); in.nextLine(); } while(in.hasNext()) { String s=in.nextLine(); if(dict.containsKey(s)){ System.out.println(s+"="+dict.get(s)); } else{ System.out.println("Not found"); } } }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Map
You are viewing a single comment's thread. Return to all comments →
my code:
//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); HashMap dict = new HashMap<>();
}