Data Structures & AlgorithmsMedium
Given an unsorted array of integers, find the length of the longest increasing subsequence. For example: Input:** [10, 9, 2, 5, 3, 7, 101, 18] Output:** 4 Explanation:** The longest increasing subsequence is [2, 3, 7, 101], therefore the length is 4. Another example: Input:** [0, 1, 0, 3, 2, 3] Output:** 4 Explanation:** One longest increasing subsequence is [0, 1, 2, 3]. Constraints: The array can contain duplicate numbers. The numbers are not necessarily positive. They can be negative or zero. Your solution should be as efficient as possible. Could you describe your approach and implement the solution? Consider the time and space complexity of your solution. In the first example, [10, 9, 2, 5, 3, 7, 101, 18], a longest increasing subsequence is [2, 3, 7, 18]. Note that subsequences are not required to be contiguous. Another longest increasing subsequence is [2, 5, 7, 101]. It is important to understand what increasing means. The numbers must be strictly increasing (e.g., 2, 3, 7 is increasing, but 2, 2, 7 is not). Another important point to note is that there may be multiple longest increasing subsequences, but your function should return the length of such a subsequence, not the subsequence itself.