thomas_2023/day_3/hint.h

18 lines
367 B
C
Raw Normal View History

2023-12-04 21:54:45 -05:00
static const char *input[] = {
"467..114..",
"...*......",
"..35..633.",
"......#...",
"617*......",
".....+.58.",
"..592.....",
"......755.",
"...$.*....",
".664.598..",
};
static const int input_height = sizeof(input) / sizeof(input[0]);
// python hax:
// len(one_line_of_this_bullshit)
static const int input_width = 10;