How to pass an array by reference in C++

By Amit Razdan

In this post, we will understand about passing an array by reference in the C++ programming language. We will see the example code also for this task. Passing an array by reference.... Read More

numpy.ones() and numpy.ones_like() in Python

By Yash Dixit

In this tutorial we will understand numpy.ones() and numpy.ones_like() in detail. We will understand the difference between them and also how to implement each of them with all the.... Read More

Scramble Strings in a given Python List

By Karun Thannickal

In this tutorial, we will look at how to scramble strings in a given Python list. We will look at a simple implementation of this task in Python. We will make use of the sample() .... Read More

Difference between various implementation of Python

By Harini Madduri

In this tutorial, you are going to learn what is the difference between the various implementation of Python. There are different types of implementation in Python. They are Python.... Read More

Implement 3D vector using dunder methods

By Karun Thannickal

In this tutorial, we will learn how to implement a 3D vector using Dunder methods in Python. First, we will look at what dunder methods are. Next, we look at the basic properties o.... Read More

Phrase Extraction in a string in Python

By Harini Madduri

In this tutorial, you are going to learn about Phrase Extraction in a string in Python. What is Phrase Extraction? Here we can take one string and select the phrase which we want t.... Read More

How to implement Iterator and Iterable Interface in Java

By Siddharth Raja

In this tutorial, we will learn about iterator and iterable interfaces in Java along with example programs. Java iterator is available since Java 1.2 collection framework. Whereas .... Read More

Find Numbers with prime frequencies greater than or equal to k in C ++

By Harsh Gupta

We are given an array of positive integers and our task is to find the numbers which appear prime number of times and whose frequency is greater than or equal to a given number .... Read More