(PR #217)update a .gitignore file in the codes/zig dir

This commit is contained in:
sjinzh
2023-01-08 20:38:48 +08:00
parent e8f7d8f8ba
commit b6abf2b092
6 changed files with 131 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
// File: TreeNode.zig
// Created Time: 2023-01-07
// Author: sjinzh (sjinzh@gmail.com)
const std = @import("std");
// Print an Array
pub fn printArray(comptime T: type, nums: []T) void {
std.debug.print("[", .{});
for (nums) |num, j| {
std.debug.print("{}{s}", .{num, if (j == nums.len-1) "]\n" else ", " });
}
}