99클럽 코테 스터디 30일차 Find Right Interval
·
스터디/99클럽 코테 스터디 TIL
📝 문제https://leetcode.com/problems/find-right-interval/description/💦 풀이 실패import java.util.*;public class Solution { public int[] findRightInterval(int[][] intervals) { int n = intervals.length; // (start, index) 형태로 정렬하기 위해 start와 index를 저장하는 배열을 생성 int[][] startPoints = new int[n][2]; for (int i = 0; i a[0])); // 결과를 저장할 배열 초기화 int..