// Name: // Lab Section: // Primary TA: // Email: // Date: // CS101 Lab 7 // RoomListList.java public class RoomListList extends List { public RoomListList(RoomList r, RoomListList next) { // fill this in } public RoomList findRoomList(int n) { return null; // fix to return the nth RoomList -- use List's find! } }