Maximum Good Subarray Length

Sliding Window / 2 Pointer Contest Medium

Given two integer array nums and badNumbers, return the maximum length good subarray.


A subarray is good if it does not contain every number in badNumbers. All elements in badNumbers are distinct.

Constraints

  • 1 <= nums.length <= 105
  • 1 <= badNumbers.length <= 20
  • -104 <= nums[i], badNumbers[i] <= 104
  • all elements in badNumbers are distinct.

Company Tags

[ ]