1
Fork 0
mirror of https://github.com/thegeneralist01/aoc synced 2026-03-07 10:59:54 +01:00
This commit is contained in:
TheGeneralist 2024-12-02 17:07:25 +01:00
parent 1af45ecf4d
commit 3bc161f9b8
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
6 changed files with 2182 additions and 2 deletions

View file

@ -36,8 +36,6 @@ pub fn main() !void {
try left.append(first);
try right.append(second);
// std.debug.print("Integers are '{}' and '{}' of types {} and {}\n", .{ first, second, @TypeOf(first), @TypeOf(second) });
}
std.mem.sort(u32, left.items, {}, comptime std.sort.asc(u32));