add zig codes for Section 'Array', 'LinkedList' and 'List'

This commit is contained in:
sjinzh 2023-01-11 18:05:42 +08:00
parent 82f9542abe
commit 2367318a28

View File

@ -137,7 +137,7 @@ pub fn main() !void {
// //
var index = find(nums, 3); var index = find(nums, 3);
std.debug.print("\n在 nums_ext 中查找元素 3 ,得到索引 = {}\n", .{index}); std.debug.print("\n在 nums 中查找元素 3 ,得到索引 = {}\n", .{index});
const getchar = try std.io.getStdIn().reader().readByte(); const getchar = try std.io.getStdIn().reader().readByte();
_ = getchar; _ = getchar;