Posts by Swastik Panja

Author Biographical Info: CSE undergrad, interested in UI Designing and Bioinformatics. Loves to play outdoor sports and listen to music.

Python – Check whether a binary tree is a full binary tree or not | Iterative Approach

By Swastik Panja

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

Check whether a given binary tree is perfect or not in Java

By Swastik Panja

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

Find sum of elements in an array with composite frequency in Java

By Swastik Panja

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

plusMillis() Method in Java with Examples

By Swastik Panja

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

Convert double number to 3 decimal places number in Java

By Swastik Panja

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

Check whether a binary tree is a full binary tree or not in Java

By Swastik Panja

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

How to solve Tiling Problem in Java

By Swastik Panja

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

minusSeconds() Method with Example in Java

By Swastik Panja

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

Related Posts