unordered_set find() function in C++

By Brijesh Kumar

In this tutorial, we will learn how to use unordered_set find() function in C++. Before directly moving to the unordered_set find() in C++. Let’s understand first unordered_s.... Read More

Higher Order Functions in Python : map, filter, sorted, reduce

By Sourav Dutta

Higher order functions (HOFs) in Python are basically those functions that take one or multiple functions as an argument or they return a function as its result. In Python, we have.... Read More

Bit-Stuffing in Java

By Sanskar Dwivedi

Hello Tech Aspirants, I hope you are doing well. In this tutorial, we will learn the concept of bit stuffing in Java. So, Data frames can contain an arbitrary number of bits which .... Read More

Get the Basic image information with Pillow | Python

By Sameer Saxena

In this tutorial, we are going to learn how to get the basic information about an image using Python Imaging Library(PIL) i.e also known as ‘Pillow’. In this library, t.... Read More

multimap find() in C++

By Brijesh Kumar

In this tutorial, we will learn how to use multimap find() in C++. Before directly moving to multimap find() in C++, lets first understand what is multimap in C++. Multimap is simi.... Read More

__setitem__ and __getitem__ in Python with example

By Meghana Thatikonda

In this tutorial, we will learn about two important methods in Python. They are Python __setitem__ and __getitem__. We will also see how to use them with an example. Both __setitem.... Read More

How to use a variable from another function in Python

By Venkat Kumar

In this article, we’ll discuss how to use a variable from another function in Python. In general, functions limit the scope of the variables to the function block and they ca.... Read More

Circular Linked List in C++

By Ankita Khan

In this tutorial, we will learn about Circular Linked List in C++. Before learning about circular linked lists, let us know about a linked list. It is a linear data structure that .... Read More

Related Posts