Skip to content

Commit 085e894

Browse files
refactor 673
1 parent 858bbc6 commit 085e894

File tree

1 file changed

+0
-19
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-19
lines changed

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

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 673. Number of Longest Increasing Subsequence
5-
* Given an unsorted array of integers, find the number of longest increasing subsequence.
6-
7-
Example 1:
8-
9-
Input: [1,3,5,4,7]
10-
Output: 2
11-
Explanation: The two longest increasing subsequence are [1, 3, 4, 7] and [1, 3, 5, 7].
12-
13-
Example 2:
14-
15-
Input: [2,2,2,2,2]
16-
Output: 5
17-
Explanation: The length of longest continuous increasing subsequence is 1,
18-
and there are 5 subsequences' length is 1, so output 5.
19-
20-
Note: Length of the given array will be not exceed 2000 and the answer is guaranteed to be fit in 32-bit signed int.
21-
*/
223
public class _673 {
234
public static class Solution1 {
245
/**

0 commit comments

Comments
 (0)