C++ program to find the triplets with a given sum in an array

By Ankita Khan

In this tutorial, we will learn how to write a simple C++ program to find the triplets with a given sum in an array. Before proceeding to the solution, let us understand the proble.... Read More

Calculate Angle Between Two Vectors In Python

By Rahul Singh

In this tutorial, you will learn how to find the angle between two vectors using Python. After the end of this tutorial, you will able to calculate the angle between two dimensiona.... Read More

Add keys to nested Dictionary in Python

By Sumanth Mahishi

In this tutorial, you will learn how to add keys to a nested dictionary in Python. A Dictionary in Python is an unordered collection of values. It stores those values in a pair key.... Read More

What is Metaclass in Python

By Vimal Pandey

Hello coders. In this post, we will learn what is a metaclass in Python? In Python, there is metaprogramming of classes that is known with the name of a metaclass. Metaprogramming.... Read More

How to arrange pictures using Python in windows 10 or Linux

By Tuhin Mitra

In this post, I’ll be discussing, how you can efficiently deal with large number of files and Organise them by their month and year and that too in some clicks after you lear.... Read More

How to Sort a Vector of Pairs in C++

By Rishabh Thukral

In this tutorial, we will learn How to Sort a vector of pairs in C++. Sort the vector of pairs in the Ascending Order in C++ This type of sorting can be done using the sort() funct.... Read More

Implement Vector as a Stack in C++

By Rishabh Thukral

In this tutorial,  we will learn how to Implement Vector as a stack in C++. Let us begin the tutorial with some basic knowledge. What is a Vector in C++? Vectors are just like a.... Read More

Join Multiple Lists in Python

By Prasad Tale

Lists in Python are so powerful data structures. The list is a collection that is ordered or changeable. Here we are going to see how to merge or join multiple lists in Python. Mer.... Read More

Related Posts