Sushil Kumar Mishrasushilsblog.hashnode.dev·Aug 4, 2024Mastering Matrix Multiplication in C with Dynamic Memory AllocationMatrix multiplication is like a mathematical dance where two matrices join forces to create a brand-new matrix. But how do we manage this in C, especially when we don’t know the matrix sizes ahead of time? That’s where dynamic memory allocation comes...1 likeProgramming Blogs
Souvik Mukherjeesouvik150.hashnode.dev·May 29, 2024Algorithms of building a Proximity Service to Discover Nearby GemsIn Part 1 of our series, "Building a Proximity Service to Discover Nearby Gems," we laid the groundwork by defining the functional and non-functional requirements, performing back-of-the-envelope estimations, and proposing a high-level design. Now, i...30 readsBuilding a Proximity Service to Discover Nearby Gemsgoogle s2
Byung Joo Jeongjoo.hashnode.dev·Apr 20, 2024if(answer[i] == pattern[j][i %pattern[j].length]){ } : a single line of code that got me bursted#Foreword My goal is very simple, I want to understand this Code, Although I am endeavoring to understand and analyze this line of code, I never understand this. sometimes, when I don't face some codes that I never comprehend, I tend to type the code...#2 dimensional Array