Software Engineer in the making | Building with C++, Python, FastAPI, LLMs & RAG | AI • Backend • Open Source | Passionate about Finance & Financial Markets
Solved LeetCode 3524 — Find X Value of Array I 🧩
Count all non-empty subarrays by the remainder of their product modulo k.
Another great problem for practicing subarray counting + modular arithmetic. 🚀
#LeetCode#DSA#CPlusPlus#ProblemSolving
I just took the first step to pivot my career and become an AI-powered digital marketer with the Google's DigiPivot Program.
If you're looking to build future-ready skills, check it out and share it with someone who could benefit too. https://t.co/sKhgqp0ELD
🚀 LeetCode Daily — #3498 Reverse Degree of a String
Solved this Easy problem by mapping each character to its reverse alphabet value and multiplying it by its 1-indexed position.
Simple string traversal + a little math. 💡
#LeetCode#DSA#Cplusplus#100DaysOfCode#Learn2Grow
LeetCode Daily 🧠
📌 1401. Circle and Rectangle Overlapping
Solved today’s problem using a simple geometric approach — find the closest point on the rectangle to the circle’s center and check the distance.
#LeetCode#DSA#CPlusPlus#100DaysOfCode#LeetCodeDaily
Solved LeetCode 1520 – Maximum Number of Non-Overlapping Substrings 🧠
Used character ranges + interval validation to find valid substrings and select the maximum non-overlapping set.
#LeetCode#DSA#CPlusPlus#Coding#Learn2Grow
Solved LeetCode 1249 — Minimum Remove to Make Valid Parentheses 🧩
Used a stack-based approach to identify unmatched parentheses and remove the minimum number of invalid brackets.
Let's connect and discuss.
#LeetCode#DSA#CPlusPlus#ProblemSolving
Solved LeetCode 836: Rectangle Overlap 📐
A simple geometry problem where checking for positive intersection area is the key. Another problem added to the DSA grind! 💻
#LeetCode#DSA#CPP#Coding#Learn2Grow
Binary Tree Problem
Approach:
1. Do BFS and store parent of each node in a map.
2. Start with target node and move up(parent), left and right
3. Track visited nodes
4 store all kth nodes in an array and return it.
#TechCommunity#SoftwareDevelopment#DSA