ASAbirami Sriinabi-blog.hashnode.dev·3d ago · 12 min readDay 9 of My 30-Day DSA Journey - Binary Search PatternsDay 9 of my DSA journey with JavaScript focuses on Binary Search. Binary Search is one of the most important searching techniques for sorted data. Instead of checking every element one by one, it repe00
ASAbirami Sriinabi-blog.hashnode.dev·4d ago · 14 min readDay 8 of My 30-Day DSA Journey - Sliding Window PatternToday, I continued learning one of the most important DSA patterns for string and array problems: Sliding Window. Sliding Window is useful when a problem asks us to find something inside a continuous 00
ASAbirami Sriinabi-blog.hashnode.dev·6d ago · 8 min readDay 7 of My 30-Day DSA Journey - Sliding Window PatternDay 7 of my DSA journey with JavaScript focuses on one of the most useful array and string patterns: Sliding Window. Today, I solved two LeetCode problems: Maximum Average Subarray I Maximum Number 00
ASAbirami Sriinabi-blog.hashnode.dev·Sep 6 · 11 min readDay 6 of My 30-Day DSA Journey — Two Pointers & Array PatternsDay 6 of my DSA journey focuses on the Two Pointers pattern and how it can be used to solve different types of array and string problems efficiently. Today, I solved 5 LeetCode problems: Container Wi00
Sskillcopilotaiinskillcopilotai-guides.hashnode.dev·Sep 3 · 9 min readHow to Think Out Loud in a Technical Interview Without RamblingTechnical interviews are not silent exams. The interviewer is rarely judging only whether you reach the final answer. They also need to understand how you frame a problem, choose between options, noti00
ASAbirami Sriinabi-blog.hashnode.dev·Sep 2 · 6 min readDay 3 of My 30-Day DSA Journey — Hashing and Map/Set Patterns1. Two Sum — LeetCode 1 Problem Given an array of integers and a target, return the indices of two numbers whose sum equals the target. Approach For every number, I calculate the value I need: needed 00
ASAbirami Sriinabi-blog.hashnode.dev·Aug 31 · 8 min readDay 1 of My 30-Day DSA Journey — Arrays with JavaScript 🚀Today I started my 30 Days of DSA with JavaScript journey. My goal is not just to solve LeetCode problems, but to understand the patterns behind the problems, analyze time and space complexity, and le00
CCclan cheninalgobite.hashnode.dev·Aug 8 · 3 min readI kept forgetting interview algorithms, so I built a five-minute practice loopThe frustrating part of algorithm interview prep was not learning a pattern for the first time. It was opening an old problem a few months later and realizing that the pattern had quietly disappeared 00
TLThync Labsinthynclabs.hashnode.dev·Jul 30 · 7 min readWhy You Can Solve LeetCode but Still Fail the Coding InterviewYou've solved 300 problems. Maybe 500. You recognize a sliding-window question on sight, you know your DP patterns cold, and your submission streak is a wall of green. Then you walk into the real inte00
RKRohit Kumharintech-rohit.hashnode.dev·Jul 23 · 38 min readMaster the Two Pointers Pattern in Python (Part 1): Two Sum, Squares of Sorted Array & Remove DuplicatesIntroduction If you've spent time solving coding interview problems, you've probably noticed a common pattern: many array problems seem to invite a nested loop solution. While that approach works, it 10