My application is on testing phase now .
Here is the glimpse
1st - summary of the notification on priority basis
2nd - automatic sensitive information like otp etc are hidden for the api.
Solved Remove Nth Node From End of List on LeetCode.
A clean linked list problem using the two-pointer technique:
- Create a dummy node
- Move the right pointer n steps ahead
- Move both pointers together
- Remove the target node in one pass
#LeetCode#DSA
Solved Reorder List on LeetCode
Loved this one! A nice mix of linked list concepts.
Approach:
- Find middle (fast & slow pointers)
- Reverse second half
- Merge alternately
#dsa#LeetCode
Dear @IRCTCofficial
make your app scalable
During tatkal times it's already at high load.
- Let's say even if you got a chance to book a ticket during the window, Payments fails.
- Your app has a bug we need to login 2 times.
Trying for 2 days and still cannot get a ticket
Was not posting lately due to shifting
But few new updates on the project
Feat: added logo
Added sorting based on high low and medium priority messages.
Added db so it can store messages until you delete it.
Solved Square Of Sorted Array with Two approaches.
✔️ Square + Sort → O(n log n), O(1)
✔️ Two Pointers → O(n), O(n)
Both work, but the two-pointer approach trades space for speed.
That's the beauty of DSA: every optimization comes with a tradeoff
#leetcode#dsa
Solved Leetcode - 11
Took me some time to understand why we move the shorter pointer instead of the taller one, but once it clicked the solution felt obvious 😂.
it is little similar to (https://t.co/YsOuJGHhpl)
O(n) Time
O(1) Space
Slowly getting better at DSA
#leetcode#dsa
bro @striver_79, you are a literal gem. 😭😭
was stuck at this leetcode hard stack problem for atleast 3hrs. and just by watching you explain the algo i will remember the pattern forever dude.