Advent of Code 2025, done in C++

day[07]: added some commentary

bpavuk.neocities.org 5bdef136 335e0537

verified
Changed files
+2 -2
src
+2 -2
src/07/solution.cxx
··· 142 142 data.push_back(t); 143 143 } 144 144 145 - render(data); 145 + render(data); // this has some great potential for TUI visualization 146 146 147 147 long long password_part_1 = count_beams_split(data); 148 148 149 149 std::map<std::string, long long> cache{}; 150 - long long password_part_2 = count_possible_paths(data, cache); 150 + long long password_part_2 = count_possible_paths(data, cache); // this one too 151 151 152 152 std::println("Eureka! {} / {}", password_part_1, password_part_2); 153 153