Overview
Comment: | 202405 -- adjust sizes; time to give it a think |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c180606e20dd3fbd77ba05c828c8e305 |
User & Date: | nnz on 2024-12-05 11:37:40 |
Other Links: | manifest | tags |
Context
2024-12-05
| ||
12:15 | 202405 1st star check-in: a12cf534f9 user: nnz tags: trunk | |
11:37 | 202405 -- adjust sizes; time to give it a think check-in: c180606e20 user: nnz tags: trunk | |
11:29 | 202405 -- read second part of data check-in: 712548bbdf user: nnz tags: trunk | |
Changes
Modified aoc2024.c from [7ac7fd4de9] to [4c494bd7a9].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - - + - - + - - + + + - - + + + | #include <ctype.h> #include <stdbool.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "aocdailies.h" #include "aocutils.h" void aoc202405(char *data, size_t len) { (void)len; // unused argument |
︙ |