Exploring the realms of code and curiosity. Passionate about solving problems, learning new technologies, and sharing insights. Join me on this journey.
Are you also working on #DSA and looking to connect? 📚💻 Let's support each other on this journey! Feel free to text me if you're interested in sharing ideas, tips, or solving problems together. Let's grow as coders! 💪 #100DaysOfCode#ProblemSolving#TechCommunity
Hi #CodingCommunity! I'm diving deep into #DSA and would love to connect with others on the same journey. Let's share tips, resources, and tackle challenges together! 💻💡 Drop a comment if you're in and let's support each other. 💪 #100DaysOfCode#ProblemSolving#CodeTogether
So, I sit down to tackle some DSA, all set to focus, and suddenly—boom! YouTube starts throwing more DSA videos at me like, “Hey, you thought you knew this topic?
Think again! Here’s 10 other ways to solve it!” And my brain’s like, “Ooh, let’s check this one out too!” Now, instead of actually coding, I’m lost in a black hole of more tutorials. Anyone got any tips on how to stop this never-ending DSA loop?
Day 4 of #100DaysOfCode:
Solved the Generate Parentheses problem. Key findings:
Add ( only if open parentheses count is less than n.
Add ) only if closed parentheses count is less than open parentheses.
Valid only when open == closed == n.
#DSA#Backtracking#Leetcode
Day 3 - #100DaysOfCode
Today I dived deeper into stacks and solved two popular problems:
Daily Temperatures: Learned how stacks can optimize time complexity from O(n^2) to O(n).
Valid Parentheses: Used a stack to ensure correct matching and ordering of brackets.
🚀 Day 3 of #LeetCode Journey!
Solved Character Replacement 🔠
1️⃣ Used Sliding Window to track the largest window
2️⃣ Counted character frequencies
3️⃣ Dynamically adjusted window based on allowed replacements (k)
Solid practice in optimizing string problems!
#100DaysOfCode#DSA
🚀 Day 2 of #LeetCode Journey!
Today, I tackled the Trapping Rain Water problem 🌧️
1️⃣ Approach 1: Extra Space (O(n) time, O(n) space)
2️⃣ Approach 2: Two Pointers, No Extra Space! (O(n) time, O(1) space)
#100DaysOfCode#DSA#DevLife#CodeNewbie#Optimization