77: Bottom left value in a binary tree

Given a binary tree, return the left bottom value

 

Example 1

Input:         1   
              / \  
        -->  5   3 

Output: 5

Example 2

Input:       1   
              \  
        -->    3 

Output: 3
Difficulty:Medium
Topic:Tree
Problem #:77