MAMuhammad Azlaan Zubairinblog.mdazlaanzubair.com·12h ago · 5 min readThe Biggest Thing I Learned at a Hackathon Had Nothing to Do with AIFor most of my career, I thought software engineering was primarily about building things. Choosing the right architecture. Writing clean code. Designing scalable systems. Picking the right framew00
AAnnetinhtml-portfolio.hashnode.dev·Jul 22 · 7 min readMastering Searching Algorithms in Python: From Linear Search to Binary Search 🔍After learning Arrays, the next topic I explored was Searching Algorithms. At first, searching seemed straightforward. But as I started learning Binary Search, I discovered that it's much more than ju00
AAAbstract Algorithmsinabstractalgorithms.hashnode.dev·Jul 2 · 2 min readTwo Pointers TechniqueThe two pointers technique uses two indices to iterate over a data structure (typically an array or a linked list) to solve problems with optimal time complexity. It is commonly used to find pairs in 00
JLJeremy Longshoreinjeremylongshore.hashnode.dev·Jul 1 · 7 min readArchitecting a Production Multi-Agent AI Platform: Technical Leadership in ActionArchitecting a Production Multi-Agent AI Platform: Technical Leadership in Action From Concept to Infrastructure: A Case Study in Systematic Problem-Solving Over the past few hours, I architected and 00
AAnnetinhtml-portfolio.hashnode.dev·Jun 29 · 6 min readMy Codeforces Problem Solving Journey — Beginner Level 🧩As part of improving my problem-solving skills, I started solving beginner problems on Codeforces. These problems helped me strengthen my basics in Python and improve my logical thinking. Here are the00
AMAlex Mateoinalexmateo.hashnode.dev·Jun 9 · 8 min readI Solved 100 LeetCode Problems Before I Realized I Was Studying the Wrong ThingAt problem 47 I thought I was making progress. At problem 83 I was confident. At problem 100 I felt ready. Then I failed the interview. Not because the problem was impossibly hard. Because I had solve00
PBProgramming Blogsinworldofprogramming.hashnode.dev·May 25 · 5 min readচিন্তা করার আনন্দআমরা ছোটবেলা থেকেই অনেক কিছু শিখি। কেউ আমাদের অংক শেখায়, কেউ ভাষা শেখায়, কেউ ইতিহাস শেখায়। কিন্তু খুব কম মানুষই আমাদের শেখায়, কীভাবে চিন্তা করতে হয়। চিন্তা করা শুনতে খুব সাধারণ একটা কাজ মনে হয়। আমরা ত00
JPJoshitha Priya Sinjoshithapriyas.hashnode.dev·Apr 30 · 2 min read🐸 Why Greedy Fails in the Frog Jump ProblemAt the very beginning when I came across the problem “Frog Jump”, I thought about using the greedy algorithm right away. As the problem states, we need to determine the minimum energy needed by the fr00
SKShubham Kumar Singhinblog.realdev.club·Apr 28 · 3 min readSliding WindowProblem You are given an array of size N and an integer K. Your task:Find the maximum sum of any subarray of size exactly K Understanding the Problem Let’s take an example: arr = [2, 1, 5, 1, 3, 2] k00
SMSaipriya M Raviinmytechtales.hashnode.dev·Apr 26 · 4 min readDemystifying Dynamic ProgrammingImagine you’re counting the number of stairs in a building. You count to 10. If someone asks, "How many stairs would there be if we added one more?", you don't go back to the bottom and start over. Yo00