X425: Attendance records

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 Answer:

Feedback

Your feedback will appear here when you check your answer.