Posts by Adit Gupta
Author Biographical Info: Not available
In this tutorial, I will show how to calculate the Frobenius Norm of a given matrix in Java. It is very basic and just involves a beginner level knowledge of how matrices work in p.... Read More
In this tutorial, I will show how to check whether a given binary tree is a full binary tree or not in C++. To implement this, we need to have a clear understanding of how to use t.... Read More
In this tutorial, I will explain how to right rotate the elements of an array with a simple Java program. Let us get started. Right Rotate the elements of an array in Java Right ro.... Read More
In this tutorial, I will be showing how to check if two trees are identical or not in Java. I will be using Java language to implement my approach. Let us get started. Check if two.... Read More
Currency is a pre-defined class present in the util package of Java. ISO 4217 is an internationally accepted standard. It recognizes currency and its code from all over the world. .... Read More
In this tutorial, we will be learning to calculate the electricity bill. I will be doing this with the help of total number of units consumed. It is straightforward, and all you ne.... Read More
In this tutorial, I will be showing to set bits of all numbers from 1 to n. I will be using C++ to implement my approach. Setting bits of a number basically means to change the bit.... Read More
In this tutorial, I will be explaining if the binary of a number is palindrome or not in Java. A palindrome number is one which when reversed, yields the same number with which we .... Read More