2024: util.zig: add inputToArrayList()

This commit is contained in:
Andrew Scott 2024-12-04 17:43:21 -05:00
parent 332eaae6ee
commit 4f5e5310f3
Signed by: a
GPG key ID: 7CD5A5977E4931C1

View file

@ -9,3 +9,13 @@ pub fn readAllInput(day: u8, allocator: std.mem.Allocator) ![]const u8 {
const stat = try file.stat(); const stat = try file.stat();
return try file.reader().readAllAlloc(allocator, stat.size); return try file.reader().readAllAlloc(allocator, stat.size);
} }
pub fn inputToArrayList(comptime T: type, allocator: std.mem.Allocator, input: []const u8) !std.ArrayList(T) {
var out = std.ArrayList(T).init(allocator);
errdefer out.deinit();
var items = std.mem.tokenizeScalar(u8, input, ' ');
while (items.next()) |item| {
try out.append(try std.fmt.parseInt(T, item, 10));
}
return out;
}