How to change background color in Matplotlib with Python

By Sachin Rastogi

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

Postfix evaluation in java

By Anubhav Srivastava

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

Move last element to front of a Linked-List in C++

By Manisha Rathore

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

How to Find the ceiling in a sorted array in C++

By Manisha Rathore

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

How to solve the staircase problem in C++

By Barshan Paul

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

Python program to check the given number is the power of 2 or not

By Bipin Kumar

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

How to shuffle an ArrayList in Java

By Ayush Sanghavi

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

Bogo Sort in Python

By Karthik Desingu

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

Related Posts