Hard
Given an integer array nums and an integer target (= k), return the number of contiguous subarrays that contain exactly target distinct integers.
Input: nums = [1,2,1,2,3], target = 2 Output: 7
Input: nums = [1,2,1,3,4], target = 3 Output: 3