The Wayback Machine - https://web.archive.org/web/20210211220743/https://www.geeksforgeeks.org/easy
Skip to content
All Easy Articles
LinkedBlockingQueue API is an optionally-bounded queue based on linked nodes. It orders the elements in FIFO(First In First Out) order. The head of this queueâ€Ķ Read More
Given a string S consisting of lowercase English alphabets, the task is to find the longest substring from the given string such that no twoâ€Ķ Read More
Given two N-length strings S and T consisting of lowercase alphabets, the task is to minimize the number of swaps of same indexed elements requiredâ€Ķ Read More
Given an array arr[] of size N, the task is for every non-repeating array element is to find the highest power of 2 that doesâ€Ķ Read More
In this article, the task is to implement a basic Snake Game. Below given some functionalities of this game: The snake is represented with aâ€Ķ Read More
Given an array arr[] consisting of N integers, the task is to find the integers whose digits are anagrams of each other and print theâ€Ķ Read More
Many people think of Blockchain as the technology that powers Bitcoin however it is something much broader than that. In simple words, it is aâ€Ķ Read More
This article revolves around how can you change your default Django SQLite-server to postgresSQL. PostgreSQL and SQLite are the most widely used RDBMS relational databaseâ€Ķ Read More
Many times we have seen people, especially students, complaining about how they can’t maintain consistency while doing Coding and solving programming problems. All the excitementâ€Ķ Read More
Given a matrix grid[][] with dimension M × N of integers, the task is to print the matrix elements using DFS traversal. Examples: Input: mat[][]â€Ķ Read More
Given two arrays arr1[] and arr2[], the task is to find the longest subarray of arr1[] which is a subsequence of arr2[]. Examples: Input: arr1[]â€Ķ Read More
Following is the simple approach to access objects of array.map() to another function in React We can directly call the function in array.map() and passâ€Ķ Read More
Node.js is a JavaScript runtime environment that runs on the Chrome V8 engine and is used for server-side scripting. It takes requests from users, processesâ€Ķ Read More
Given integers R and representing the radius of a circle and the angle formed at the center O by the sector AB (as shown in theâ€Ķ Read More
Given an array arr[] consisting of N distinct integers and an array queries[] consisting of Q queries, the task is for each query is toâ€Ķ Read More
Everyone knows that the tech enthusiasts hold a strong passion for reading articles – whether it be about their specific domain, cutting-edge technologies, source codesâ€Ķ Read More
1. McCulloch-Pitts Model of Neuron The McCulloch-Pitts neural model, which was the earliest ANN model, has only two types of inputs — Excitatory and Inhibitory.â€Ķ Read More
From Cricket to Formula 1, AI and ML are used in sports to make strategy, training, advertising/marketing, and do much more. AI is making aâ€Ķ Read More
Modulation is simply a widely used process in communication systems in which a very high-frequency carrier wave is used to transmit the low-frequency message signalâ€Ķ Read More
  Before diving into the Agglomerative algorithms, we must understand the different concepts in clustering techniques. So, first, look at the concept of Clustering inâ€Ķ Read More