From 7d0f5fb3b870185e11b182d011f4ed126934dc41 Mon Sep 17 00:00:00 2001 From: Shahriar Shatil <52494840+ShatilKhan@users.noreply.github.com> Date: Wed, 28 Feb 2024 23:31:05 +0600 Subject: [PATCH] Added README.md file for Find Bottom Left Tree Value --- 513-find-bottom-left-tree-value/README.md | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 513-find-bottom-left-tree-value/README.md diff --git a/513-find-bottom-left-tree-value/README.md b/513-find-bottom-left-tree-value/README.md new file mode 100644 index 0000000..da09799 --- /dev/null +++ b/513-find-bottom-left-tree-value/README.md @@ -0,0 +1,24 @@ +
Given the root
of a binary tree, return the leftmost value in the last row of the tree.
+
Example 1:
+ ++Input: root = [2,1,3] +Output: 1 ++ +
Example 2:
+ ++Input: root = [1,2,3,4,null,5,6,null,null,7] +Output: 7 ++ +
+
Constraints:
+ +[1, 104]
.-231 <= Node.val <= 231 - 1