Remove logging messages

Looks like these were checked in by mistake
上级 6dafff7b
......@@ -9,7 +9,6 @@ suite('Arrays', () => {
test('findFirst', () => {
const array = [1, 4, 5, 7, 55, 59, 60, 61, 64, 69];
console.log('hello');
let idx = arrays.findFirstInSorted(array, e => e >= 0);
assert.strictEqual(array[idx], 1);
......@@ -21,7 +20,6 @@ suite('Arrays', () => {
idx = arrays.findFirstInSorted(array, e => e >= 61);
assert.strictEqual(array[idx], 61);
console.log('world');
idx = arrays.findFirstInSorted(array, e => e >= 69);
assert.strictEqual(array[idx], 69);
......@@ -30,7 +28,7 @@ suite('Arrays', () => {
assert.strictEqual(idx, array.length);
idx = arrays.findFirstInSorted([], e => e >= 0);
assert.strictEqual(array[idx], 3);
assert.strictEqual(array[idx], 1);
});
test('quickSelect', () => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册