Remove minimum number of elements such that no common element exist in both array in Python

By Kunal Kamble

In this tutorial, we will write a Python program to remove minimum elements from the array so that no common elements exist in both arrays. Following is the approach we are going t.... Read More

Apply JavaScript map() to an Array

By HETVI JAIN

In this tutorial, we will learn about a built-in function in JavaScript known as map(). It is a high-order function. The map() method returns a new array containing the results of .... Read More

How to loop through elements in unordered map in C++

By HARI HARAN B

std::unordered_map is a hash map implementation provided by the standard template library of C++. It is sometimes necessary to loop through elements of the map. So, in this article.... Read More

Rotate an image in Python – Multiple ways

By Amandeep Singh

Let’s look at how to rotate an image using Python in this tutorial. By using image rotation, the picture is rotated by a predetermined number of degrees with respect to its c.... Read More

Crop Image using OpenCV in Python

By Amandeep Singh

One of the most fundamental picture processes we use in our projects is cropping an image. We’ll go through how to crop image in Python using OpenCV in this tutorial. Crop Im.... Read More

Merge two arrays with unique values in Swift

By Khushi Aswani

We know that there are specific tasks in Swift that require merging two arrays, with unique values, if any element is present more than once. This blog is related to a similar task.... Read More

Create a pie chart using Matplotlib in Python

By Kovid Bhatt

This article will clear all your doubts related to creating a pie chart using the Matplotlib library in Python. All the methods, from creating a basic pie chart to a customized pie.... Read More

Initialize array with specific size in Swift

By Khushi Aswani

This tutorial has information related to the initialization of an array with a specific size in Swift. Whenever there is a need to initialize an array of specific size, we can use .... Read More

Related Posts