You are given an integer array named nums.
Your task is to determine the length of the longest strictly increasing subsequence within this array.
You may assume that:
Return the length of the longest strictly increasing subsequence.
[1, 7, 0, 1, 1, 2, 3, 9]
5
The longest increasing subsequence is [0, 1, 2, 3, 9], so the length is 5.
[6, 6, 6]
1
The longest increasing subsequence is [6], so the length is 1.
[1, 7, 0, 1, 1, 2, 3, 9]
5