Skip to content

Latest commit

 

History

History

challenge-23

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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