Skip to content

Commit 3ef0cef

Browse files
Remove console.log calls
1 parent c4e927f commit 3ef0cef

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

exercises/practice/resistor-color-trio/resistor-color-trio.spec.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ beforeAll(async () => {
1616

1717
class ResistorColorTrio {
1818
constructor([first, second, third]) {
19-
console.log(first, second, third);
2019
const firstBufferOffset = 1024;
2120
const firstBufferCapacity = 1024;
2221

exercises/practice/robot-simulator/robot-simulator.spec.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ class Robot {
6868
inputBufferOffset,
6969
inputLengthEncoded
7070
);
71-
console.log(bearing, x, y);
7271
if (bearing === -1) throw new InvalidInputError(`invalid instructions in ${input}`)
7372
this.place({ direction: directions[bearing], x, y });
7473
}

0 commit comments

Comments
 (0)