0
/ 1.0
The Student Chapter for the Association for Computing Machinery (ACM) requested your help. Throughout the semester, attendance for the...
The Student Chapter for the Association for Computing Machinery (ACM)
requested your help. Throughout the semester, attendance
for the weekly club meetings has been very unpredictable. The club
keeps track of attendance each week but would like to have a
master attendance list for the semester. Given a String
array,
create an ArrayList
of all members of the ACM club.
Examples:
processAttendance({"Don","Mike","Phillip"}) -> new java.util.ArrayList<String>(){{add("Don");add("Mike");add("Phillip");}}
Your feedback will appear here when you check your answer.