All Easy Articles
Given an integer N, the task is to count the number of prime digits in N.Examples:   Input: N = 12 Output: 1 Explanation: Digits of the number –… Read More
Swapping: Swapping is a process of swapping a process temporarily to a secondary memory from the main memory which is fast than compared to secondary… Read More
Set 1: Sliding Window Maximum (Maximum of all subarrays of size k).Given an array arr of size N and an integer K, the task is… Read More
Given an array arr of positive integers of size N, the task is to find the minimum cost to make this array a permutation of… Read More
Given a sorted array arr of size N, the task is to reduce the array such that each element can appear at most two times.… Read More
Matplotlib is an amazing visualization library in Python for 2D plots of arrays. Matplotlib is a multi-platform data visualization library built on NumPy arrays and… Read More
Given a string of lowercase letters str of length N, the task is to reduce it by removing the characters which appear exactly K times… Read More
Given an array arr, the task is to find the minimum distance between any two same elements in the array. If no such element is… Read More
Given an array arr containing N positive integers, the task is to check if the given array arr represents a permutation or not.   A sequence… Read More
When the whole nation is on the verge of lockdown due to COVID-19 pandemic and all Geeks across the country have to stay indoors, how… Read More
Given an array arr[] containing positive integers of size N and an integer K, the task is to make all the elements in the array… Read More
Go language provides inbuilt support for bits to implement bit counting and manipulation functions for the predeclared unsigned integer types with the help of bits… Read More
Selenium is a powerful tool for controlling web browsers through programs. It is functional for all browsers, works on all major OS, and its scripts… Read More
Given two numbers a and b, the task is to check whether the concatenation of a and b is a perfect cube or not.Examples:  Input:… Read More
In this article we will see how to make a push button react when it is pressed. When button get releases it comes back to… Read More
Prerequisite: Introduction to Wireshark  This article will introduce the methods of packet capturing and analyzing. It will also introduce some advanced tools that are used… Read More
Matplotlib is an amazing visualization library in Python for 2D plots of arrays. Matplotlib is a multi-platform data visualization library built on NumPy arrays and… Read More
The word CAPTCHA stands for the Completely Automated Public Turing test to tell Computers and Humans Apart How many of you’ve got had to fill… Read More
Given an integer N, the task is to count the number of digits in N which is a prime number, and also divides the number.Examples:  … Read More
Given a matrix arr of size N x M, the task is to traverse this matrix using recursion.Examples:  Input: arr[][] = {{1, 2, 3}, {4,… Read More