Skip to content

Commit

Permalink
Remove console.log calls
Browse files Browse the repository at this point in the history
  • Loading branch information
keiravillekode committed Feb 22, 2025
1 parent c4e927f commit 3ef0cef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ beforeAll(async () => {

class ResistorColorTrio {
constructor([first, second, third]) {
console.log(first, second, third);
const firstBufferOffset = 1024;
const firstBufferCapacity = 1024;

Expand Down
1 change: 0 additions & 1 deletion exercises/practice/robot-simulator/robot-simulator.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ class Robot {
inputBufferOffset,
inputLengthEncoded
);
console.log(bearing, x, y);
if (bearing === -1) throw new InvalidInputError(`invalid instructions in ${input}`)
this.place({ direction: directions[bearing], x, y });
}
Expand Down

0 comments on commit 3ef0cef

Please sign in to comment.