Tree

Feb
29
2024
0

Daily Question – 1609. Even Odd Tree

It’s very natural and clear to use the BFS algorithm. Not too complicated, but need to check the details more carefully

Feb
28
2024
0

0513. Find Bottom Left Tree Value

Description: https://leetcode.com/problems/find-bottom-left-tree-value/description Notes: BFS Code:

Feb
27
2024
0

Daily Question – 0543. Diameter of Binary Tree

Description: https://leetcode.com/problems/diameter-of-binary-tree/description Notes: Code:

Feb
26
2024
0

Daily Question – 0100. Same Tree

Use the following function to convert the array to treeNode.