How to push all zeroes to the end of the array in C++

By Manisha Rathore

In this tutorial, we will learn to push all zeroes to the end of an array in C++. As we have given an array and we have to shift zeroes to the end of the array. For Example:  Give.... Read More

Count pairs in array whose sum is divisible by K in C++

By Manisha Rathore

In this tutorial, we will learn how to count pairs in an array whose sum is divisible by K in C++. Also, given an array and a number K, and we have to count pairs. For example: Giv.... Read More

How to do Bucket sort in Java?

By Tanisha Saxena

In this tutorial, we will learn to perform bucket sort in java to sort any given array. Bucket sort can sort an array in linear time but it only works for special set of inputs. Th.... Read More

Printing nodes that don’t have sibling in Java

By Krishna Lakhi

Hey Everyone! In this article, we will learn how to find out the nodes in a given binary tree that does not have any sibling and print it in Java. Before directly getting into the .... Read More

Polynomial Regression in Python

By Nikhil Govindaraju

In this tutorial, we will learn Polynomial Regression in Python. We have shown the graphical representation for a better understanding. What is polynomial regression? How is polyno.... Read More

Python program to print alphabetical pattern – All

By Apoorva Gupta

In this tutorial, you are going to learn how to print various alphabetic pattern in Python. Alphabetical (A-Z) pattern is a series of alphabet which forms a pattern or any shape li.... Read More

Star(asterisk) pattern in Python

By Apoorva Gupta

In this tutorial, you are going to learn about the star or asterisk pattern in Python. Star or asterisk patterns are a series of * which forms a pattern or any geometrical shape li.... Read More

List and dictionary comprehension in python

By Apoorva Gupta

In this tutorial, you are going to learn about the list and dictionary comprehension in python. Both of them will help us to reduce the length of the code that will save the memory.... Read More

Related Posts