Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Given a Binary Tree, find sum of all left leaves in it.

sum of all left leaves in below Binary Tree is 5 + 2 = 7.

     1
   /   \
  2     2
 / \   /
5   4 2