JavaScript 中具有 n 个不同元素的数组部分
问题
我们需要编写一个JavaScript函数,它接受一个文字数组arr作为第一个参数。我们函数的第二个参数将是一个数字,num。我们的函数应该计算并返回包含恰好num个不同元素的数组的子数组的数量。
例如,如果函数的输入是-
const arr = [12, 15, 12, 15, 18]; const num = 2;
那么输出应该是-
const output = 7;
输出说明
由恰好2个不同元素形成的子数组-
[12,15], [15,12], [12,15], [15,18], [12,15,12], [15,12,15], [12,15,12,15]
示例
此代码将是-
const arr = [12, 15, 12, 15, 18]; const num = 2; const distinctSubarrays = (arr = [], num = 1) => { const findDistinct = (count) => { const map = {}; let ptr = 0; let distinct = 0; let res = 0; for(let right = 0; right < arr.length; right++){ const num = arr[right]; map[num] = (map[num] || 0) + 1; if(map[num] === 1){ distinct += 1; }; while(distinct > count){ map[arr[ptr]] -= 1; if(map[arr[ptr]] === 0){ distinct -= 1; }; ptr += 1; }; res += right - ptr + 1; }; return res; }; return findDistinct(num) - findDistinct(num - 1) }; console.log(distinctSubarrays(arr, num));输出结果
控制台中的输出将是-
7