| 1234567891011121314151617181920212223242526272829 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- // https://adventofcode.com/2024/day/4
- import Core library "io";
- import Core library "range";
- import library "day4_common";
- import library "io_utils";
- fn Run() {
- var search: Wordsearch = Wordsearch.Read();
- var mas: array(i32, 3) = (0x4D, 0x41, 0x53);
- var found: i32 = 0;
- for (y: i32 in Core.InclusiveRange(1, 138)) {
- for (x: i32 in Core.InclusiveRange(1, 138)) {
- if ((search.Check3(mas, x - 1, y - 1, 1, 1) or
- search.Check3(mas, x + 1, y + 1, -1, -1)) and
- (search.Check3(mas, x - 1, y + 1, 1, -1) or
- search.Check3(mas, x + 1, y - 1, -1, 1))) {
- ++found;
- }
- }
- }
- Core.Print(found);
- }
|