Posts by Swastik Panja
Author Biographical Info: CSE undergrad, interested in UI Designing and Bioinformatics. Loves to play outdoor sports and listen to music.
In this tutorial, we will learn to check whether a binary tree is full or not in the iterative approach in Python. We will be solving the problem in Python. There are many ways of .... Read More
In this tutorial, we will learn to verify if a binary tree is a perfect binary tree or not in Java. There are many ways of solving this problem; here, I have discussed the iterativ.... Read More
Here, we will learn how to find the sum of numbers in an array with composite frequency in Java. What is Composite Frequency? Composite numbers are those numbers that have factors .... Read More
In this tutorial, we will learn the plusMillis() method in Java with examples. The plusMillis() method adds the specified number of milliseconds to the time value. This method can .... Read More
Here, we will learn to convert double number to 3 decimal places number in Java. There are many different ways to do that. Here, I will show you 4 ways. What is a Double number? A .... Read More
In this tutorial, we will learn to check whether a binary tree is full or not in Java. There are many ways to tackle this problem; I am going to use the Recursive Method here. A Bi.... Read More
In this tutorial, we will learn how to solve a Tiling Problem in Java. Most of you already know what a Tiling Problem is, but still, I will explain it and give the basic idea behin.... Read More
In this tutorial, we will learn about the minusSeconds() Method with an example in Java. This minusSeconds() method basically subtracts the given number of seconds from a time valu.... Read More