diff options
| author | omagdy <omar.professional8777@gmail.com> | 2024-12-10 20:51:07 +0200 |
|---|---|---|
| committer | omagdy <omar.professional8777@gmail.com> | 2024-12-10 20:51:07 +0200 |
| commit | 93cc02c058f39d370472dfe7d667ae7a2f6396b3 (patch) | |
| tree | f37f7b76a99d9a59c29c931b53eb60014e6b941f /2024/go/src/day9 | |
| parent | 549b9010bd6e4ac9aedc5543a5b75c9b4c190ffe (diff) | |
| download | aoc-93cc02c058f39d370472dfe7d667ae7a2f6396b3.tar.xz aoc-93cc02c058f39d370472dfe7d667ae7a2f6396b3.zip | |
Removed log file used for debugging.
Diffstat (limited to '2024/go/src/day9')
| -rw-r--r-- | 2024/go/src/day9/main.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/2024/go/src/day9/main.go b/2024/go/src/day9/main.go index 83351b4..0a9b51b 100644 --- a/2024/go/src/day9/main.go +++ b/2024/go/src/day9/main.go @@ -95,9 +95,6 @@ type FileBlock struct { space int } -// i = 1 j=12 -// [{0 2} {-1 3} {-1,1} {1 3} {-1 3} {2 1} {-1 3} {3 3} {-1 1} {4 2} {-1 1} {5 4} {-1 1} {6 4} {-1 1} {7 3} {-1 1} {8 4} {9 2}] - func moveBlocksPartTwo(fileBlocks []FileBlock) []string { for i := 0; i < len(fileBlocks); i++ { if fileBlocks[i].id != -1 { |
