Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 6bc51d3

Browse files
Update 436._Find_Right_Interval.md
1 parent 21cf2c5 commit 6bc51d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎docs/Leetcode_Solutions/436._Find_Right_Interval.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Solution(object):
8080
后面我想到既然所有的start都不一样,我不如搞一个list存排过序的start,然后这样就可以用二分查找来找到第一个大于某end的idx了,
8181
同样的用一个字典来存start和idx的信息。
8282

83-
这个二分的思想就是找到第一个大于target的index,思路跟第35题一样
83+
这个二分的思想就是找到第一个大于target的index,思路跟[leetcode第35题](https://github.com/apachecn/awesome-leetcode/blob/master/docs/Leetcode_Solutions/035._search_insert_position.md)一样
8484

8585
```python
8686
class Solution(object):

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /