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...
X1146: 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.
Your Answer:
Feedback
Your feedback will appear here when you check your answer.