All Easy Articles
Given an array and k, we need to find the minimum operations needed to make GCD of the array equal or multiple of k. Here… Read More
Python is a multipurpose language and one can do anything with it. Python can also be used for game development. Let’s create a simple command-line… Read More
You are given an array of size ‘n’. You have to replace every pair of consecutive values ‘x’ by a single value ‘x+1’ every time… Read More
Prerequisite : Flood fill algorithm, Scan-line polygon fillingIntroduction : Boundary Fill Algorithm starts at a pixel inside the polygon to be filled and paints the… Read More
Given a number n, we need to find the maximum number of times n circles intersect. Examples:  Input :  n = 2Output : 2 Input… Read More
Given the integer N, the task is to print all the numbers less than N, which are divisible by 3 and 5.Examples :  Input :… Read More
Given an array, we need to find the maximum height of the triangle which we can form, from the array values such that every (i+1)th… Read More
Given an array arr[]. Find the maximum value of prefix sum which is also suffix sum for index i in arr[]. Examples :  Input :… Read More
The strtotime() function is a built-in function in PHP which is used to convert an English textual date-time description to a UNIX timestamp. The function… Read More
Routing is a process that is performed by layer 3 (or network layer) devices in order to deliver the packet by choosing an optimal path… Read More
Problem – Write a assembly language program to find maximum of two 8 bit numbers in 8085 microprocessor. Assumptions – Starting memory locations and output… Read More
An interval is represented as a combination of start time and end time. Given a set of intervals, we need to write a program to… Read More
Banner ads are a rectangular image or text ads that occupy a spot within an app’s layout. If you’re new to mobile advertising, banner ads… Read More
Prerequisite : Reading an excel file using openpyxl Openpyxl is a Python library for reading and writing Excel (with extension xlsx/xlsm/xltx/xltm) files. The openpyxl module… Read More
Given an array of even number of elements, form groups of 2 using these array elements such that the difference between the group with the… Read More
A grammar that is used to define mathematical operators is called an operator grammar or operator precedence grammar. Such grammars have the restriction that no… Read More
EtherChannel is a port link aggregation technology in which multiple physical port links are grouped into one logical link. It is used to provide high-speed… Read More
Prerequisite : Basics of TkinterPython offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, tkinter is most commonly used… Read More
Web page scraping can be done using multiple tools or using different frameworks in Python. There are variety of options available for scraping data from… Read More
Introduction : Data transfer instructions in the 8086 microprocessor are used to move data between memory locations, registers, and input/output (I/O) devices. These instructions are… Read More