maketrans() and translate() functions in Python

By Siddhant Chouhan

This tutorial aims to teach you maketrans() and translate() functions in Python. The maketrans() method returns a mapping table also called a transition table which can be used by .... Read More

std::mutex in C++

By Siddhant Chouhan

In this post, we are going to learn about std::mutex in C++. Synchronization is needed when processes need to execute concurrently i.e. for the sharing of resources with no obstruc.... Read More

Chrono Library in C++ with examples

By Siddhant Chouhan

The Chrono library in C++ is utilized to work with time operations. The Chrono library has its own namespace called “chrono“, if you want to use the chrono library firs.... Read More

Convert MP4 Video to GIF Animation in Node.js

By Samim

This tutorial will show you how to convert an MP4 video into a GIF animation in Node.js. We will use the fluent-ffmpeg library for this purpose. In this library, the complex comman.... Read More

Graph Coloring using Greedy method in Python

By Siddhant Chouhan

In this tutorial, we will learn about the Welsh Powell algorithm, Graph Coloring using the Greedy method in Python. We are given a graph we have to find out the minimum number of c.... Read More

Check for String suffix in Swift

By Khushi Aswani

This tutorial is based on the topic strings to check for its suffix. It means to work on the end part of a string. Here we have described 4 different methods with different outputs.... Read More

How does numpy.histogram2d works in Python

By Sadhu Meghana

In this tutorial, we will understand what numpy.histogram2d is and how it works in Python. The Numpy library contains many functions which perform mathematical operations with arra.... Read More

std::extent() template in C++

By Siddhant Chouhan

In this post, we will learn about std::extent() template in C++. We have to use <type_traits> library which is a part of C++ STL. The std::extent() is used to find out the nu.... Read More

Related Posts