0
How shall i output
fcount and lcount in the code below. Having a hard time trying. Need help https://code.sololearn.com/cYzP9v9p05LF/?ref=app
1 Answer
+ 1
This is an example :
public static void main(String[] args){
HashMap m = createMap();
System.out.println(getSameFirstNameCount(m,"haokip"));
System.out.println(getSameLastNameCount(m,"stephen1"));
}