Codewars

Enough is enough!

Alice and Bob were on a holiday. Both of them took many pictures of the places they’ve been, and now they want to show Charlie their entire collection. However, Charlie doesn’t like this sessions, since the motive usually repeats. He isn’t fond of seeing the Eiffel tower 40 times. He tells them that he will only sit during the session if they show the same motive at most N times. Luckily, Alice and Bob are able to encode the motive as a number. Can you help them to remove numbers such that their list contains each number only up to N times, without changing the order?

Task

Given a list lst and a number N, create a new list that contains each number of lst at most N times without reordering. For example if N = 2, and the input is [1,2,3,1,2,1,2,3], you take [1,2,3,1,2], drop the next [1,2] since this would lead to 1 and 2 being in the result 3 times, and then take 3, which leads to [1,2,3,1,2,3].
Test.assertSimilar(deleteNth([20,37,20,21], 1), [20,37,21])
Test.assertSimilar(deleteNth([1,1,3,3,7,2,2,2,2], 3), [1, 1, 3, 3, 7, 2, 2, 2])



Похоже, что я не правильно понял условие либо не правильно сделал…

В выводе теста видно что 4 встерчается в результате дважды. Тогда как должно быть единственное повторение. Дело в реализации, дебаж случай в упавшем тесте.

Да, повторяются числа почему-то
запустил для
console.log(deleteNth([4, 4, 22, 49, 49, 4, 21, 49, 49, 21, 19, 49, 49, 47, 13, 4, 21, 19, 50, 47, 24, 24, 24, 49, 46, 4, 49, 19, 21, 13, 24, 24, 49, 4, 24, 24, 21, 21, 13, 46, 50, 13, 50, 50, 49, 19], 1));


почему-то подряд идущие “лишние числа” функция вырезает, а через какой-то промежуток заново начинает проверку.
Как в debug сделать чтоб показывало значения vocabulary?

ладно, загуглил задачу, нашел решение. Через filter там сделано.