How to find the number of zeros in Python

By Anisha Gupta

The problem statement is: ” An array of 0s and 1s is given. The array is sorted in decreasing order that is all the 1s followed by all the 0s. Calculate the number of zeros i.... Read More

Find minimum number of jumps to reach end in Python

By M Ashok

In this tutorial, we will learn how to write a program in Python for finding the minimum number of jumps to reach the end of an array. We will give a set of numbers separated by a .... Read More

How to check if a given number is Fibonacci number in C++

By Harsha Sai

Hello Learners, today we are going to learn an interesting topic to check whether the given number is a Fibonacci or not in C++ coding. In this topic, we will solve this problem us.... Read More

Predict Weather Report Using Machine Learning in Python

By Balender Singh

In this tutorial, we will learn how to predict the weather report using machine learning in python. In layman terms, I can simply define it as forecasting weather so I have used Ti.... Read More

Implementation of Diffie-Hellman Algorithm in Java

By Divya Junuthula

In this tutorial, we are going to learn about the Diffie-Hellman Algorithm in Java. First of all, we will learn what is Diffie-Hellman Algorithm key exchange algorithm. The Diffie-.... Read More

Minimum delete operations to make all elements of array same in Python

By Om Avhad

Today we’ll be learning to determine the required number of minimum delete operations to make all elements of array same in Python. Determine the number of minimum delete ope.... Read More

Count the Number of Divisors of n occurring within n in C++

By Meghana Thatikonda

In this tutorial, we will learn how to count the number of divisors of a number where that divisor is a digit of the number. Also, we will see its implementation in C++. Divisor An.... Read More

Barrier Objects in Python with Example

By Meghana Thatikonda

In this tutorial, we will learn what are barrier objects and how to create them in Python. We will also see an example of how to use them in Python. Barrier Objects in Python Barri.... Read More

Related Posts