aboutsummaryrefslogtreecommitdiff
path: root/2020/05
diff options
context:
space:
mode:
Diffstat (limited to '2020/05')
-rw-r--r--2020/05/solve.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/2020/05/solve.c b/2020/05/solve.c
index 025b644..1f6a9b4 100644
--- a/2020/05/solve.c
+++ b/2020/05/solve.c
@@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
+#include <time.h>
#define COUNT 1024
#define FIRST 100
@@ -95,8 +96,11 @@ int main(int argc, char *argv[])
if (!fp)
exit(EXIT_FAILURE);
+ clock_t tic = clock();
printf("%d\n", part_one(fp));
printf("%d\n", part_two());
+ clock_t toc = clock();
+ printf("TIME: %f seconds\n", (double)(toc - tic) / CLOCKS_PER_SEC);
fclose(fp);
return 0;