aboutsummaryrefslogtreecommitdiff
path: root/2022/04-camp-cleanup/first.zig
blob: 6a5bf5211c010abe2fa9e04e17f97eefdc295839 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const std = @import("std");

const example = @embedFile("example");
const input = @embedFile("input");

pub fn main() anyerror!void {
    try std.testing.expectEqual(solve(example), 2);
    const result = try solve(input);
    try std.io.getStdOut().writer().print("{}\n", .{result});
}

fn solve(puzzle: []const u8) !u64 {
    var it = std.mem.tokenize(u8, puzzle, "\n");
    var tot: u64 = 0;
    while (it.next()) |line| {
        var it2 = std.mem.tokenize(u8, line, "-,");
        const a = try std.fmt.parseInt(u64, it2.next() orelse unreachable, 10);
        const b = try std.fmt.parseInt(u64, it2.next() orelse unreachable, 10);
        const c = try std.fmt.parseInt(u64, it2.next() orelse unreachable, 10);
        const d = try std.fmt.parseInt(u64, it2.next() orelse unreachable, 10);
        if (a <= c and b >= d or a >= c and b <= d) {
            tot += 1;
        }
    }
    return tot;
}