SnowScriptWinterOfCode / LeetCode_Q

Solve with us the most mind boggling DSA questions to ace your skills
2 stars 50 forks source link

Day 30 ques 1 Number of Longest Increasing Subsequence #617

Open prerna-rn opened 7 months ago

prerna-rn commented 7 months ago

Given an integer array nums, return the number of longest increasing subsequences.

Notice that the sequence has to be strictly increasing.

Example 1:

Input: nums = [1,3,5,4,7] Output: 2 Explanation: The two longest increasing subsequences are [1, 3, 4, 7] and [1, 3, 5, 7].

Example 2:

Input: nums = [2,2,2,2,2] Output: 5 Explanation: The length of the longest increasing subsequence is 1, and there are 5 increasing subsequences of length 1, so output 5.

Constraints:

1 <= nums.length <= 2000
-10^6 <= nums[i] <= 10^6

https://leetcode.com/problems/number-of-longest-increasing-subsequence/description/

Tech-neophyte commented 7 months ago

Please assign this ques to me @bh-g

Anomasingh commented 7 months ago

Please assign this question to me @bh-g

avanimathur commented 7 months ago

Please assign it to me @bh-g