commit 3cb2fa46a54b8bdfdf7d2c59ad7e3c8c3cf510c7
parent 9135c3e07547e1e8663c40356c9adf15463eaeb4
Author: bsandro <[email protected]>
Date: Fri, 10 Dec 2021 19:35:29 +0200
Removed debug printfs from day09 solutions
Diffstat:
2 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/day09/puzzle.c b/day09/puzzle.c
@@ -81,7 +81,6 @@ void puzzle(const char *filename, long long *result1, long long *result2) {
*result2 = 1;
for (int i = 0; i < CLUSTERS_SIZE; ++i) {
- printf("cluster #%i: %d\n", i, clusters[i]);
*result2 *= clusters[i];
}
diff --git a/day09/puzzle_test.c b/day09/puzzle_test.c
@@ -82,7 +82,6 @@ void puzzle_test(const char *filename, long long *result1, long long *result2) {
*result2 = 1;
for (int i = 0; i < CLUSTERS_SIZE; ++i) {
- printf("cluster #%i: %d\n", i, clusters[i]);
*result2 *= clusters[i];
}