Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Добавить тест к задаче #202

Open
sskovalevskiy opened this issue Jul 31, 2018 · 0 comments
Open

Добавить тест к задаче #202

sskovalevskiy opened this issue Jul 31, 2018 · 0 comments

Comments

@sskovalevskiy
Copy link

sskovalevskiy commented Jul 31, 2018

Мне кажется к задаче следует добавить тест

it("меняет массив, оставляя только значения из диапазона", function() { var arr = [5, 5, 3, 1]; filterRangeInPlace(arr, 1, 4); assert.deepEqual(arr, [3, 1]); });

Иначе принимает как правильное код:
function filterRangeInPlace(arr, a, b){ for (var i = 0; i < arr.length; i++) { var val = arr[i]; if (val < a || val > b) { arr.splice(i, 1); } } }
который идентичен предложенному Вами решению, за исключением строки arr.splice(i, 1); (должно быть arr.splice(i--, 1);)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant