Question: Divide Maps In the previous exercise, you took two maps and turned them into one larger map. Now the teacher wants to take that larger
Divide Maps
In the previous exercise, you took two maps and turned them into one larger map. Now the teacher wants to take that larger map and create two new maps: one to containing all students who's name starts with "A" and one for everyone else.
theT divideMap() method below takes in a Map parameter called allSections. Implement it to add all of the students who's name starts with "A" to the map in the field aNames, and add all other students to the map in the field otherNames. The fields have already been initialized to empty maps for you in the class constructor.
public class MakeTwoMaps
{
public Map
public Map
public MakeTwoMaps()
{
aNames = new HashMap
otherNames = new HashMap
}
public void divideMap(Map
{
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
