kumarpallav.devEvent-Driven Architecture with Spring Boot and KafkaIntroduction Event-driven architecture (EDA) is a powerful approach to building scalable, decoupled, and reactive applications. Unlike traditional request-response models, EDA revolves around events that propagate through the system asynchronously, e...Feb 17, 2025·3 min read
kumarpallav.dev3Sum Closest - Step-by-Step with JavaProblem Statement The problem asks us to find three numbers in an array whose sum is closest to a given target value. Example Input: nums = [-1, 2, 1, -4], **target = 1 **Expected Output**:2` Approach We can solve the problem using the Two Pointer T...Dec 19, 2024·4 min read
kumarpallav.dev52-Weeks 52 - Blogs + VlogsI have been very much interested in blogs and vlogs. I believe it gives me a chance to learn as well as give back to the community. While I have always loved the idea, I have never been consistent. In the past few months, I have realized that I have ...Feb 23, 2023·2 min read
kumarpallav.devAzure Spring Cloud - PostGres DatabasePostgreSQL is a powerful, open-source object-relational database system that is widely used for storing and managing data. It is known for its reliability, flexibility, and performance, making it a popular choice for a variety of applications. Spring...Jan 23, 2023·5 min read
kumarpallav.dev1962. Remove Stones to Minimize the TotalTo solve the question you can visit the following link https://leetcode.com/problems/remove-stones-to-minimize-the-total/ Explanation The question is asking us to do one operation at a time, the operation is simply to reduce the number of piles to ...Dec 28, 2022·2 min read