Skip to content

Commit cae45fe

Browse files
committed
modify code
1 parent 37a1771 commit cae45fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/class086/Code03_LIS.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ public class Code03_LIS {
2727

2828
public static int[] nums = new int[MAXN];
2929

30-
public static int[] ends = new int[MAXN];
31-
3230
public static int[] dp = new int[MAXN];
31+
32+
public static int[] ends = new int[MAXN];
3333

3434
public static int[] ans = new int[MAXN];
3535

0 commit comments

Comments
 (0)