Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sandip-kanzariya/gfg-leetcode
- Owner: Sandip-Kanzariya
- Created: 2023-08-19T15:01:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-15T07:31:46.000Z (4 months ago)
- Last Synced: 2024-09-16T07:02:37.312Z (4 months ago)
- Topics: gfg-potd, leetcode-solutions
- Language: C++
- Homepage:
- Size: 739 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)|