package
0.0.0-20211003111303-bf095942a6eb
Repository: https://github.com/tlboright/golang-interview.git
Documentation: pkg.go.dev

# README

Is a Binary Tree symmetric?

Problem Definition

Symmetric Tree (Mirror Image of itself)

Given a binary tree, check whether it is a mirror of itself.

For example, this binary tree is symmetric:

 1

/
2 2 / \ /
3 4 4 3

But the following is not:

1

/
2 2 \
3 3