Compare commits

..

2 commits

Author SHA1 Message Date
eriedaberrie 813bf64be5 2023 day 11 2023-12-10 21:33:30 -08:00
eriedaberrie 2028e3c1de Nix: add text-icu package 2023-12-10 20:14:59 -08:00
2 changed files with 4 additions and 4 deletions

View file

@ -19,8 +19,8 @@ int main() {
}
for (unsigned int col = 0; col < lines[0].size(); col++) {
for (unsigned int row = 0; row < lines.size(); row++) {
if (lines[row][col] != '.') {
for (auto& r : lines) {
if (r[col] != '.') {
goto next2;
}
}

View file

@ -24,8 +24,8 @@ int main() {
}
for (unsigned int col = 0; col < lines[0].size(); col++) {
for (unsigned int row = 0; row < lines.size(); row++) {
if (lines[row][col] != '.') {
for (auto& r : lines) {
if (r[col] != '.') {
goto next2;
}
}