Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sandip-kanzariya/gfg-leetcode

Solution Of GFG & LeetCode Questions
https://github.com/sandip-kanzariya/gfg-leetcode

gfg-potd leetcode-solutions

Last synced: 5 days ago
JSON representation

Solution Of GFG & LeetCode Questions

Awesome Lists containing this project

README

        

# GFG
Solution Of GFG Questions

# Tree
|Question|Problem|
|---|---|
|Height of Binary Tree |[GFG](https://practice.geeksforgeeks.org/problems/height-of-binary-tree/1)|
|Balanced Binary Tree |[GFG](https://practice.geeksforgeeks.org/problems/check-for-balanced-tree/1), [LeetCode](https://leetcode.com/problems/balanced-binary-tree/description/)|

#### Level Ordered Travesal in BT : BFS
|Question|Problem|
|---|---|
|Level Ordered travesal||
|Find level of each Leaf node|[GFG](https://practice.geeksforgeeks.org/problems/leaf-under-budget/1)|
|Left most and right most node in each level of BT| [GFG](https://practice.geeksforgeeks.org/problems/leftmost-and-rightmost-nodes-of-binary-tree/1), [LeetCode](https://leetcode.com/problems/even-odd-tree/description/)|
| | |

# Graph
#### BFS
|Question|Problem|
|---|---|
| |[Minimum Multiplication to Reach End](https://practice.geeksforgeeks.org/problems/minimum-multiplications-to-reach-end/1)|
#### DFS on Grid
|Question|Problem|
|---|---|
| |[GFG](https://practice.geeksforgeeks.org/problems/replace-os-with-xs0052/1)|
|Floyd Warshall| Transitive closure of a Graph [GFG](https://practice.geeksforgeeks.org/problems/transitive-closure-of-a-graph0930/1) |
|Topological|[GFG](https://practice.geeksforgeeks.org/problems/eventual-safe-states/1)|