import java.util.Collection; import java.util.Map; public interface SchoolAssignmentSolver { Map assign(Collection schools, Collection students); }