Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 979 Bytes

226-Invert-Binary-Tree.md

File metadata and controls

67 lines (50 loc) · 979 Bytes

226. Invert Binary Tree

2017-03-14

Invert a binary tree.

     4
   /   \
  2     7
 / \   / \
1   3 6   9

to

     4
   /   \
  7     2
 / \   / \
9   6 3   1

Trivia:

This problem was inspired by

this original tweet

by

Max Howell

:

Google: 90% of our engineers use the software you wrote (Homebrew), but you can’t invert a binary tree on a whiteboard so fuck off.

Solution

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     public var val: Int
 *     public var left: TreeNode?
 *     public var right: TreeNode?
 *     public init(_ val: Int) {
 *         self.val = val
 *         self.left = nil
 *         self.right = nil
 *     }
 * }
 */
class Solution {
    func invertTree(_ root: TreeNode?) -> TreeNode? {
        guard let r = root else { return nil }
        let t = TreeNode(r.val)
        t.left = invertTree(r.right)
        t.right = invertTree(r.left)
        return t
    }
}