LC Daily Sum Completed
dimag kaharab kar diya ye sum ne
Lengthy and contains multiple sub problems
Hint:- do as the problem says
do give it a try:- leetcode.com/problems/find-…#LeetCode
Giving Codeforces virtual contest (Div3)
solved 4 questions
onto the 5th one
i wasn't serious about this contest as it was not going to affect my rating so i went for lunch in between contest..
i think i can solve the 5th one too😃
#codeforces #leetcode #cp #contestm
#DailyCodingChallenge
Day 360
Task: Form the smallest number using digits from both arrays.
Solution: If a common digit exists, return the smallest one; otherwise, combine the smallest digits from both arrays.
#LeetCode
Day 64 of #100DaysOfCode
Solved Reverse Linked List II 🔁
Learned how to reverse a subpart of a linked list using pointers & recursion.
Feeling stronger with linked list manipulation ��
#DSA #LeetCode #CodingJourneX7
Daily DSA | Day 67 | LeetCode150
Solved: Partition List (LC86)
Idea:
Create two separate lists—one for nodes less than x and another for nodes greater or equal to x, then connect them while maintaining relative order.
#LeetCode#LeetCode150#DSA#CPP#Algorithms#CodingJourney
🚀 Day 752/1001 Days Of Code
LeetCode POTD
3548. Equal Sum Grid Partition II
Tougher than Part I — more edge cases & deeper thinking 🧠
Learning to break problems better each day.
#1001DaysOfCode #Day752 #LeetCode #DSIk
Day 17.
Solved Daily Temperatures.
Brute force repeats work.
Better:
when a higher temp comes,
resolve all previous smaller ones.
stack of indices + while loop.
NeetCode 150
Stack: 4/6 ✅
#BuildInPublic#LeetCode#DSA
Consistency > Intensity. 🚀
Today marks 28 days of solving at least one LeetCode problem every single day.
There were days I didn't feel like it—days when the logic didn't click or the schedule was packed.
#LeetCode #CodingStreak #ProblemSolving #SoftwareEngineering #Consistencyt
Solved Leetcode 239 (Sliding Window Maximum) using Deque data structure.
Deque is better in many cases as it provides accessing elements and performing operations from both directions !
pop_back();
pop_front();
push_back();
push_front();
#leetcode#dsa#cp#buildinpublic#cp