# LC435 - Non-overlapping Intervals

## Problem

Given an array of intervals `intervals` where `intervals[i] = [starti, endi]`, return *the minimum number of intervals you need to remove to make the rest of the intervals non-overlapping*.

### Example

**Input:** intervals = `[[1,2],[2,3],[3,4],[1,3]]`

**Output:** 1

**Explanation:** `[1,3]` can be removed and the rest of the intervals are non-overlapping.

## Solution

Time complexity is $$O(n\log n)$$. Space complexity is $$O(1)$$.

```python
def eraseOverlapIntervals(self, intervals: List[List[int]]) -> int:
	intervals.sort()

	res = 0	
	prev = intervals[0][1]

	for start, end in intervals[1:]:
		# not overlapping
		if start >= prev:
			prev = end
			
		# overlapping
		else: 
			res += 1
			prev = min(end, prev)
	return res
		
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.vjssn.dev/practice/24-06-29/lc435-non-overlapping-intervals.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
