day15_part1.carbon 396 B

123456789101112131415
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. // https://adventofcode.com/2024/day/15
  5. import Core library "io";
  6. import library "day15_common";
  7. fn Run() {
  8. var g: Grid = Grid.Read();
  9. ReadAndExecuteActions(ref g);
  10. Core.Print(g.Signature());
  11. }