package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev

# README

Description

Given a binary tree, print column by column

Example 1:

Input:
         1
       /   \
      2      3
    /   \      \
   4     5       6
        /  \    /
       7    8  9

Output:
4
2 7
1 5
3 8 9
6

# Functions

PrintColumns prints a tree column by column.