我想用不同的值替换重复项。
例如arr = [1,1,1,1,2,2,2,3],我想用R
所以结果看起来像这样 arr = [1,R,R,R,2,R,R,3]
现在我正在使用这种方法:
arr = [1,1,1,1,2,2,2,3]
let previous = 0;
let current = 1;
while (current < arr.length) {
if (arr[previous] === arr[current]) {
arr[current] = 'R';
current += 1;
} else if (arr[previous] !== arr[current]) {
previous = current;
current += 1;
}
}
我想知道是否有不同的方法来实现这一目标。例如使用 Lodash (uniqwith, uniq)。
谢谢
白衣染霜花
心有法竹
萧十郎
相关分类