mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-10-31 18:37:48 +08:00 
			
		
		
		
	 7ffef7e1d6
			
		
	
	7ffef7e1d6
	
	
	
		
			
			* update author information * Update index.md --------- Co-authored-by: Yudong Jin <krahets@163.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			315 B
		
	
	
	
		
			Zig
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			315 B
		
	
	
	
		
			Zig
		
	
	
	
	
	
| // File: include.zig
 | |
| // Created Time: 2023-01-07
 | |
| // Author: codingonion (coderonion@gmail.com)
 | |
| 
 | |
| pub const PrintUtil = @import("PrintUtil.zig");
 | |
| pub const ListUtil = @import("ListNode.zig");
 | |
| pub const ListNode = ListUtil.ListNode;
 | |
| pub const TreeUtil = @import("TreeNode.zig");
 | |
| pub const TreeNode = TreeUtil.TreeNode; |