Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 366 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 366 Bytes

Invert a binary tree

This problem was asked by Twitter.

Description

You are given the root of a binary tree. Invert the binary tree in place.

That is, all left children should become right children, and all right children should become left children.

Example

Given:
   a
   / \
  b   c
 / \  /
d   e f

Inverted:
 a
 / \
 c  b
 \  / \
  f e  d