aboutsummaryrefslogtreecommitdiff
path: root/2020/11
diff options
context:
space:
mode:
authorMarvin Borner2020-12-13 12:35:33 +0100
committerMarvin Borner2020-12-13 12:35:33 +0100
commitfc4981e3ea863632c88e5f0b308ae4532d077e49 (patch)
tree811a1d2c09cd811764fb8c3c09099a876beb0e7f /2020/11
parentf476fb5eaf30254dcb9e480f27f52b207147e207 (diff)
Added execution timers
Diffstat (limited to '2020/11')
-rw-r--r--2020/11/solve.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/2020/11/solve.c b/2020/11/solve.c
index 2b613cf..d69fd36 100644
--- a/2020/11/solve.c
+++ b/2020/11/solve.c
@@ -1,8 +1,8 @@
-#include <assert.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <time.h>
#define SIZE 10000
#define X_MAX 99
@@ -201,8 +201,11 @@ int main(int argc, char *argv[])
char buf[SIZE] = { 0 };
fread(buf, SIZE, 1, fp);
+ clock_t tic = clock();
printf("%d\n", part_one(buf));
printf("%d\n", part_two(buf));
+ clock_t toc = clock();
+ printf("TIME: %f seconds\n", (double)(toc - tic) / CLOCKS_PER_SEC);
fclose(fp);
return 0;