Leetcode 0111. Minimum Depth of Binary Tree
Posted on Tue 05 November 2024 in Leetcode • Tagged with bfs, binary-tree
Question Link : https://leetcode.com/problems/minimum-depth-of-binary-tree/
Difficulty: Easy
Premium: False
Question
Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node. Note: A leaf is a node with no …
Continue reading