You are given a binary array nums containing only 0s0s0s and 1s1s1s. Your task is to find the maximum length of a contiguous subarray in which the number of 0s0s0s and 1s1s1s is exactly equal.
nums
Return the length of the longest such subarray.
Constraints:
1≤1 \leq1≤ nums.length ≤105\leq 10^5≤105
nums.length
...