- come up with a sample input, and compute the results for your input taking in Employee returning a LinkedList of teams from most to least sick days Joe - SE - 4 Ben - QA - 1 Maria - SE - 1 Alison - R&D - 5 Ludwig - SE - 1 Kevin - R&D - 3 Joan - QA - 1 Return: R&D, SE, QA - list subtasks - count the number of sick days for each team - sort the teams by number of sick days SickTeam team name number of sick days for the team - outline your solution create a SickTeam class create an empty list of SickTeam for each employee is employee's team not in the sickteam list? make a new sickteam object with employee's department add employee's sick days to team sort the sick team list in descending order by number of sick days return the list