Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
wiktoriavh committed Dec 10, 2024
1 parent 9e6762c commit c24198f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/9.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function solution(input: string): { part1: string; part2: string } {

pStart = 0;
pEnd = disk.length - 1;
console.log(disk);
//console.log(disk);

while (pEnd > 0) {
let length = 0;
Expand All @@ -77,7 +77,7 @@ function solution(input: string): { part1: string; part2: string } {
length++;
pEnd--;
}
console.log(length);
//console.log(length);

let foo = 0;
let index = 0;
Expand Down

0 comments on commit c24198f

Please sign in to comment.