개발중/Algorithm (9) 썸네일형 리스트형 MeetingRooms 기사 시험도 끝났겠다. 실기 준비와 틈틈히 알고리즘을 병행 해야지. 1일 1알고리즘이다. 오늘 해본 알고리즘은 미팅룸 알고리즘이다. import java.util.Arrays; import java.util.Comparator; class Interval{ int start; int end; Interval(){ this.start = 0; this.end = 0; } public Interval(int s, int e) { this.start = s; this.end = e; } } public class MeetingRooms { public static void main(String[] args) { MeetingRooms a = new MeetingRooms(); Interval in1 = new.. 이전 1 2 다음