Recent Posts

Inner Class Nested Class Confusion in Java

3 minute read

Hello everyone, For a very long time, I could not really figure out the inner class or nested class stuff. In this post I’ll try to understand and write abo...

Next Permutation Algorithm in Java

1 minute read

In this post, I will tell you how to write the next permutation algorithm in Java. I’ve encountered this problem in one of the hackerrank challenge.. Java i...

BigInteger Recursive Combination Method

less than 1 minute read

Hello guys, This post will be small. I just encounter a problem where I need to find combination of a number and results would be big that cannot be even st...

How to sort Java Map Collection

less than 1 minute read

Today, I was dealing with another question, and I needed to sort a HashMap in Java. I realized that I’ve niether tried nor needed sorting a map in Java!. The...