@zomatocare Thank you for the response. However, the food was completely spoiled and unsafe to eat, so a partial refund is not acceptable.
I request you to please process a full refund of ₹442 at the earliest.
Looking forward to a quick resolution.
Solved 4 DSA problems today:
• Number of Islands
• Number of Enclaves
• 01 Matrix
• Surrounded Regions
Practiced graph traversal concepts like BFS/DFS on grids.
Also learned data manipulation in Pandas (merge, analysis
#DSA#LeetCode#Coding#Consistency#Python#Panda
@engagekit_io Absolutely. Comparison can be toxic sometimes.
That’s why I started sharing my progress publicly — it helps me stay accountable and focused on my own journey.
I try to code every day, but I’m not able to stay consistent.
After 2–3 days my streak breaks. When I see others solving many problems daily, I feel demotivated.
Still trying to improve. From today, I will share my daily coding on X. Maybe this will help me stay consistent. 💻
Day 8 – LeetCode 151 |
Reverse Words in a String
🔄Reverse string → reverse each word → remove extra spaces.
space O(n)
time O(n)
#LeetCode#Day8#DSA#Strings#CPlusPlus
Day 7 – LeetCode 13 | Roman to Integer 🏛️
Converted Roman numerals to integers by tracking value order.
If current < next → subtract, else add.⏱️ Time: O(n)
📦 Space: O(1)#LeetCode#Day7#DSA#Arrays#CPlusPlus#CodingJourney
Day 5 – LeetCode 42 | Trapping Rain Water 💧
Approach: Prefix & Suffix Max
Water at i = min(prefixMax, suffixMax) - height[i]
Time O(n)
Space O(n)
#LeetCode#DSA#100DaysOfCode 🚀
Day 4 ✅
Solved LeetCode 1910 – Remove All Occurrences of a Substring 💻
Approach:
While part exists in string s
Find its index using find()
Remove it using erase()
Repeat until not found
Key STL: string.find(), string.erase()
#100DaysOfCode#LeetCode#DSA#Day4
Day 3 ✅ #LeetCodeChallenge
Solved LeetCode 3075 – Maximum Happiness Sum
• Used a min-heap of size k to keep only the top k happiness values
• Removed smaller values to maintain best candidates
• Ignored negative contributions
TC= O(n log k)
#DSA#Heap#LeetCodeDaily
LeetCode Day 1 ✅
Solved Question 1975 – Maximum Matrix Sum
Focused on absolute values, negative count & edge cases.
Consistency starts today 🚀
#LeetCode#Day1#DSA#ProblemSolving
New Year, New grind
As a https://t.co/uLmV0U4NK0 2nd year student, I’ve realized theory is nothing without practice. Starting Jan 1st, I’m taking the #100DaysOfCode challenge! 🔥
The Plan: ✅ Master DSA via @LeetCode ✅ Start CP from scratch (Rating 800) to sharpen logic ��