Skip to content

Commit fc7459e

Browse files
refactor 646
1 parent c5cc12a commit fc7459e

File tree

3 files changed

+51
-29
lines changed

3 files changed

+51
-29
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Your ideas/fixes/algorithms are more than welcome!
4040
|649|[Dota2 Senate](https://leetcode.com/problems/dota2-senate/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_649.java) | O(n) |O(n) | Medium | Greedy
4141
|648|[Replace Words](https://leetcode.com/problems/replace-words/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_648.java) | O(n) |O(n) | Medium | Trie
4242
|647|[Palindromic Substrings](https://leetcode.com/problems/palindromic-substrings/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_647.java) | O(n^2) |O(1) | Medium | DP
43-
|646|[Maximum Length of Pair Chain](https://leetcode.com/problems/maximum-length-of-pair-chain/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_646.java) | O(nlogn) |O(1) | Medium | DP
43+
|646|[Maximum Length of Pair Chain](https://leetcode.com/problems/maximum-length-of-pair-chain/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_646.java) | O(nlogn) |O(1) | Medium | DP, Greedy
4444
|645|[Set Mismatch](https://leetcode.com/problems/set-mismatch/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_645.java) | O(nlogn) |O(1) | Easy |
4545
|644|[Maximum Average Subarray II](https://leetcode.com/problems/maximum-average-subarray-ii/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_644.java) | |O(1) | Hard | Binary Search
4646
|643|[Maximum Average Subarray I](https://leetcode.com/problems/maximum-average-subarray-i/)|[Solution](../master/src/main/java/com/fishercoder/solutions/_643.java) | O(n) |O(1) | Easy |

src/main/java/com/fishercoder/solutions/_646.java

+5-28
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ Now, we define a pair (c, d) can follow another pair (a, b) if and only if b < c
2121
*/
2222
public class _646 {
2323

24-
/**credit: https://discuss.leetcode.com/topic/96804/java-o-nlog-n-time-o-1-space*/
24+
/**
25+
* credit: https://discuss.leetcode.com/topic/96804/java-o-nlog-n-time-o-1-space
26+
*/
2527
public int findLongestChain(int[][] pairs) {
2628
Arrays.sort(pairs, (o1, o2) -> o1[1] - o2[1]);
2729
int result = 0;
@@ -30,7 +32,7 @@ public int findLongestChain(int[][] pairs) {
3032
while (++i < n) {
3133
result++;
3234
int curEnd = pairs[i][1];
33-
while (i+1 < n && pairs[i+1][0] <= curEnd) {
35+
while (i + 1 < n && pairs[i + 1][0] <= curEnd) {
3436
/**This means, we'll keep incrementing i until pairs[i+1][0] is
3537
* exactly greater than curEnd.*/
3638
i++;
@@ -39,29 +41,4 @@ public int findLongestChain(int[][] pairs) {
3941
return result;
4042
}
4143

42-
public static void main(String... args) {
43-
_646 test = new _646();
44-
45-
// int[][] pairs = new int[][]{
46-
// {1,2},
47-
// {2,3},
48-
// {5,6},
49-
// {3,4}
50-
// };
51-
52-
int[][] pairs = new int[][]{
53-
{9,10},
54-
{-9,9},
55-
{-6,1},
56-
{-4,1},
57-
{8,10},
58-
{7,10},
59-
{9,10},
60-
{2,10}
61-
};
62-
63-
int i = test.findLongestChain(pairs);
64-
System.out.println(i);
65-
System.out.println("Hello World!");
66-
}
67-
}
44+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
package com.fishercoder;
2+
3+
import com.fishercoder.solutions._646;
4+
import org.junit.BeforeClass;
5+
import org.junit.Test;
6+
7+
import static org.junit.Assert.assertEquals;
8+
9+
public class _646Test {
10+
11+
private static _646 test;
12+
private static int[][] pairs;
13+
14+
@BeforeClass
15+
public static void setup() {
16+
test = new _646();
17+
}
18+
19+
@Test
20+
public void test1() {
21+
pairs = new int[][]{
22+
{1,2},
23+
{2,3},
24+
{5,6},
25+
{3,4}
26+
};
27+
assertEquals(3, test.findLongestChain(pairs));
28+
}
29+
30+
@Test
31+
public void test2() {
32+
pairs = new int[][]{
33+
{9,10},
34+
{-9,9},
35+
{-6,1},
36+
{-4,1},
37+
{8,10},
38+
{7,10},
39+
{9,10},
40+
{2,10}
41+
};
42+
assertEquals(2, test.findLongestChain(pairs));
43+
}
44+
45+
}

0 commit comments

Comments
 (0)