In this article, we will learn how to change background color in Matplotlib with Python. we need some basic concepts of two python module named as:- Matplotlib Numpy Actually, we a.... Read More
Hi coders! In this tutorial, we are going to discuss a very important topic that is generally skipped by the learners, the topic is postfix notation. Postfix notation represents al.... Read More
In this tutorial, we will learn to move last element to front of a linked-list in C++. For Example: If the given linked list is 1->2->3->4->5 Then, the output is 5->.... Read More
In this tutorial, we will find the ceiling in a sorted array in C++. Here, we will have an array and a number y and we have to get ceiling of the number. Moreover, the ceiling of y.... Read More
So what is the staircase problem? This is a pretty interesting one. let’s start learning how to solve the staircase problem in C++. Suppose you are standing at the bottom of .... Read More
In this tutorial, we will learn how to check the given number is the power of 2 or not in python programming. A positive number N is given by the user and we have to check whethe.... Read More
In this tutorial, we will learn how to shuffle or randomise an ArrayList in Java. We shall use ArrayList to implement the same. ArrayList is present in the Collections framework of.... Read More
This post deals with one of the most inefficient sorting algorithms in programming – the Bogo Sort in Python! The name itself is derived from the “Bogus Sort” T.... Read More