تلاش کے نتائج: "#DSAWithPython"

7 نتائج
Mohammed Rehan
Mohammed Rehan@rehaann_07·
Day 38 of #DSAWithPython 🔁 Revised Dynamic Programming fundamentals ✔ Fibonacci (Recursion → Memo → Tab → Space Optimized) ✔ Climbing Stairs ✔ Core DP concepts reinforced Strong foundations > Rushing topics. #dsa #python
English
0
0
3
21
Mohammed Rehan
Mohammed Rehan@rehaann_07·
Day 33 of #DSAwithPython Today I implemented: 🌳 Minimum Spanning Tree ⚡ Kruskal’s Algorithm 🔗 Union-Find (Path Compression + Union by Rank) Time Complexity: O(E log E) Graphs are becoming powerful now 💪🔥 #100DaysOfCode #Python #DSA #Graphs
English
0
0
3
24
Mohammed Rehan
Mohammed Rehan@rehaann_07·
Day 27 of #DSAWithPython 🚀 Today I chose depth over speed. Revisited Graph basics: • BFS (Queue, level-wise traversal) • DFS (Recursion, depth-wise traversal) • Visited array intuition • Disconnected graphs
English
0
0
3
24
Bhumi Pandey
Bhumi Pandey@BhumiPandey06·
Recursion – Sum of Array Elements Final task of the day: Find sum of elements in an array using recursion. Pattern: sum(arr) = arr[0] + sum(arr[1:]) Base case: empty array = 0 Thinking in terms of base + subproblem #DSAwithPython #Recursion #LearningInPublic
English
0
0
2
10