Skip to content

Commit 972bce0

Browse files
committed
Fix
1 parent cff0147 commit 972bce0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/main/java/com/thealgorithms/recursion/LongestIncreasingSubsequence.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,4 @@ public int lengthOfLIS(int[] nums) {
2121
int prev = -1;
2222
return solve(nums, prev, 0);
2323
}
24-
25-
public static void main(String[] args) {
26-
int[] nums = {10, 9, 2, 5, 3, 7, 101, 18};
27-
LongestIncreasingSubsequence lis = new LongestIncreasingSubsequence();
28-
System.out.println("Length of LIS: " + lis.lengthOfLIS(nums));
29-
}
3024
}

0 commit comments

Comments
 (0)