Posts by Meghana Thatikonda
Author Biographical Info: Not available
In this tutorial, we are going to learn how to find the index or position of an element in the vector with its implementation in C++. Vectors are like dynamic arrays. They can gro.... Read More
In this tutorial, we will learn what is a union in C++ and its use when compared with structure. We will understand it using a few examples in C++. Union in C++ A union is a user-d.... Read More
In this tutorial, we will learn how to get the mirror of a string i.e., reversing a string along with its implementation in C++. Mirror of a string Mirroring a string means finding.... Read More
In this article, we are going to see how to print the staircase pattern in C++. For doing this, we will use the concept of nested loops. Example of Staircase Pattern Consider the h.... Read More
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
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
In this tutorial, we will learn about the priority queue of pairs in C++. We will understand this along with a suitable example. Priority Queue of pairs A priority queue is an abst.... Read More
In this article, we are going to learn about Python closures and how to implement them with an example. To understand closures we need to first understand nested functions and non-.... Read More