第一题太长,没看,直接输出的 过了40。剩下全A了 第二题,设计会议室 static List<String> getMeeting(List<String> list) { if(list.size() == 0) return list; list.sort((o1, o2) -> { int aLeft = Integer.parseInt(o1.split(",")[0]); int bLeft = Integer.parseInt(o2.split(",")[0]); return aLeft - bLeft; }); String ...