8000 20200827 · BoscoSuen/leetcode@6a0a7f0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6a0a7f0

Browse files
committed
20200827
1 parent 9e1693e commit 6a0a7f0

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
.history/
1+
.history/
2+
.DS_Store
3+
*/.DS_Store

Java/436.find-right-interval.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* @lc app=leetcode id=436 lang=java
3+
*
4+
* [436] Find Right Interval
5+
*/
6+
7+
// @lc code=start
8+
class Solution {
9+
public int[] findRightInterval(int[][] intervals) {
10+
11+
}
12+
}
13+
// @lc code=end
14+

0 commit comments

Comments
 (0)
0