Ankit AgrahariDec 7, 20214 minFork-Join Framework in JavaThis post will discuss on the Fork Join framework introduced in Java 7. It utilizes the maximum available processors to compute any...
Ankit AgrahariDec 3, 20213 minSpringSpring Data JPA with MongoDBIn this post we will create a simple Spring JPA project which will connect to MongoDB and create a document, where we will save records...
Ankit AgrahariDec 1, 20213 minSpringTesting in MicroservicesIn this post we will go through the integration testing of the controller of any Spring Boot project. We will be using an existing Spring...
Ankit AgrahariNov 30, 20212 minLeetCode#LC1481 - Find Least Number of Unique Integers After K RemovalsIn this post, we will look into one of the Leetcode problem #1481, where we have to find the least number of unique integers after...
Ankit AgrahariNov 29, 20212 minLeetCode#LC983 - Find The Minimum Cost For Tickets (DP)In this post we will go through the Leetcode #983 to find the minimum cost for Tickets, which could be one of the starting practice...
Ankit AgrahariNov 28, 20213 minRead/Write Excel Using Apache POI & JavaThis post will explore Apache POI library which is used to read any excel document and can also edit the excel sheets. Apache POI (Poor...
Ankit AgrahariNov 27, 20212 minLeetCode#LC226 - Inversion Of Binary Tree Using RecursionFollowing the last post on the binary tree traversals, in this post we will try to invert a given binary tree. Binary tree is a data...