Resultados de búsqueda: "#DSAWithPython"

10 resultados
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
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
Bhumi Pandey
Bhumi Pandey@BhumiPandey06·
LeetCode 485 - Max Consecutive Ones Find max number of consecutive 1s in a binary array. Simple pass with a counter → track & reset on 0. Great warm-up for sliding window & array traversal skills. #LearnInPublic #LeetCode #DSAwithPython
English
0
0
3
24
Bhumi Pandey
Bhumi Pandey@BhumiPandey06·
LeetCode 283 - Move Zeroes Move all 0s to the end of the array, keeping order of others. Used two-pointer approach: one scans, one swaps. Brute → Optimal (O(n), in-place). Teaches clean in-place logic and pointer control! #LeetCode #DSAwithPython #LearnInPublic #akshaysaini
English
0
0
6
69
Bhumi Pandey
Bhumi Pandey@BhumiPandey06·
LeetCode 88 – Merge Sorted Array Task: Merge two sorted arrays, in-place, with extra space at the end of one. Brute: Create a new array Optimal: Start filling from the back using two pointers #DSAwithPython #InPlaceAlgo #LeetCodeChallenge
English
0
0
3
20
Bhumi Pandey
Bhumi Pandey@BhumiPandey06·
LeetCode 344 : Reverse String Reverse the characters of a string in-place using O(1) space. Learned: Classic two-pointer swap Pythonic solution vs. interview-expected approach #TwoPointers #DSAwithPython @akshaymarch7
English
0
0
2
17
Bhumi Pandey
Bhumi Pandey@BhumiPandey06·
Started my DSA grind again — this time with structured prep. Following Akshay Saini’s roadmap + Python for problem-solving. Kicked things off with Array-based questions from LeetCode. Learning brute → better → optimal Focused on interview mindset #DSAwithPython #AkshaySaini
English
0
0
4
29
Aniket Ugale
Aniket Ugale@uaniket4·
1/3 Day 1: Progress update on my #SER project and #DSAwithPython learning journey: Successfully collected data from a Kaggle dataset and processed audio into spectrograms, gaining insights into audio preprocessing and visualization techniques. #Python #AI #LearningJourney"
English
1
0
0
5