solutions.py
@solutions_py
56
subscribers
206
photos
183
links
admin:
@Xojarbu
Download Telegram
Join
solutions.py
56 subscribers
solutions.py
#Trees
,
#DFS
Title: 404. Sum of Left Leaves
URL:
leetcode
Level:
Easy
!! in the image comments where
DFS
, it is BFS and BFS comment is
DFS
approach.
solutions.py
#Trees
,
#DFS
Title: 200. Number of Islands
URL:
leetcode
Level:
Medium
solutions.py
#binary_tree
#DFS
Title:
Invert Tree
URL:
binarysearch
Level:
Medium
solutions.py
#binary_tree
#DFS
Title:
Univalue Tree
URL:
binarysearch
Level:
Medium
solutions.py
#binary_tree
#DFS
Title:
Leaves in Same Level
URL:
binarysearch
Level:
Medium
solutions.py
#graph
#dfs
Title:
Flood fill
URL:
leetcode
L
evel:
Easy
github
👍
1
solutions.py
#tree
#dfs
Title:
Same Tree
URL:
leetcode
L
evel:
Easy
github
Time:
O(N) -> O(q+p)
👍
1
solutions.py
#tree
#dfs
Title:
Maximum Depth of Binary Tree
URL:
leetcode
L
evel:
Easy
👍
2
solutions.py
#binary_tree
#tree
#dfs
Title:
637. Average of Levels in Binary Tree
URL:
leetcode
Level:
Easy
DFS
aproach
👍
1
solutions.py
solutions.py
#tree #dfs Title: Maximum Depth of Binary Tree URL: leetcode Level: Easy
a bit simplified
#dfs
#recursion
🤩
1
solutions.py
solutions.py
a bit simplified #dfs #recursion
version 3 with stack
#dfs_iterative
solutions.py
Title:
102. Binary Tree Level Order Traversal
URL:
leetcode
Level:
Medium
#DFS