Files
carbon-lang/examples/advent2024/day3_common.carbon
T
Richard Smithandjosh11b 4ddba4ab1e Modernize advent of code examples (#6496)
* Use generics in more places.
* Use `ref` in more places.
* Use `for` in more places.
* Use a little bit of C++ interop.
* Use an adapter for the `char`-or-EOF result of reading a char instead
of pure `i32`, and use char literals where possible.

---------

Co-authored-by: josh11b <15258583+josh11b@users.noreply.github.com>
2025-12-17 23:26:26 +00:00

48 lines
1.3 KiB
Plaintext

// 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/3
library "day3_common";
import library "io_utils";
// Reads "mul(a,b)", and returns (true, a, b).
// On error, stops before the first invalid character and returns (false, 0, 0).
// TODO: -> Optional((i32, i32))
fn ReadMul() -> (bool, i32, i32) {
var a: i32;
var b: i32;
if (ConsumeChar('m') and ConsumeChar('u') and ConsumeChar('l') and
ConsumeChar('(') and ReadInt(ref a) and ConsumeChar(',') and
ReadInt(ref b) and ConsumeChar(')')) {
return (true, a, b);
}
return (false, 0, 0);
}
// Reads "do()" or "don't()", and returns (true, was_do).
// On error, stops before the first invalid character and returns (false, false).
fn ReadDoOrDont() -> (bool, bool) {
// "do"
if (not ConsumeChar('d') or not ConsumeChar('o')) {
return (false, false);
}
var do: bool = true;
// "n't"
if (ConsumeChar('n')) {
if (not ConsumeChar('\'') or not ConsumeChar('t')) {
return (false, false);
}
do = false;
}
// "()"
if (not ConsumeChar('(') or not ConsumeChar(')')) {
return (false, false);
}
return (true, do);
}