Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
Misc
8.8K+ articles
Mathematical
7.8K+ articles
Arrays
6.5K+ articles
Competitive Programming
3.3K+ articles
Strings
3.3K+ articles
Greedy
2.1K+ articles
Algorithms
2.0K+ articles
Sorting
1.8K+ articles
Searching
1.7K+ articles
DSA
23.0K+ posts
Recent Articles
Popular Articles
Jackknife Resampling
Last Updated: 30 May 2025
Jackknife resampling is a classic statistical technique used to estimate the bias and variance of a statistic, particularly when the sample size is small or the theoretica...
read more
Python
Picked
DSA
AI-ML-DS
Introduction and Array Implementation of Deque
Last Updated: 12 March 2025
A Deque (Double-Ended Queue) is a data structure that allows elements to be added or removed from both ends—front and rear. Unlike a regular queue, which only allows inser...
read more
DSA
Data Structures
deque
Top Problems on Deque Data Structure asked in SDE Interviews
Last Updated: 16 March 2025
A Deque (Double-Ended Queue) is a flexible data structure that supports insertion and deletion from both ends in O(1) time. In SDE interviews, deques are frequently tested...
read more
Queue
DSA
Product of Two Numbers
Last Updated: 17 March 2025
Given two numbers, a and b. Return the product of both the numbers.Examples:Input: a = 4, b = 5Output: 20Input: a = 3, b = 5Output: 15Table of Content[Expected Approach] U...
read more
Mathematical
DSA
Wavelet Transforms
Last Updated: 08 May 2025
A Wavelet Transform (WT) is a mathematical technique that transforms a signal into different frequency components, each analyzed with a resolution that matches its scale. ...
read more
Python
Picked
DSA
AI-ML-DS
Top Logic Building Problems for Interviews
Last Updated: 13 April 2025
Logic building problems are fundamental to developing strong problem-solving skills and mastering algorithms. These problems often require a deep understanding of patterns...
read more
Mathematical
DSA
LCM (Least Common Multiple) Coding Practice Problems
Last Updated: 27 March 2025
The (Least Common Multiple) of two numbers is the smallest positive integer that can be divided by both of the numbers.Computing the LCMComputing the Least Common Multipl...
read more
Mathematics
School Learning
DSA
LCM
Design and Analysis of Algorithm Tutorial
Last Updated: 25 March 2025
Design and Analysis of Algorithms is a fundamental area in computer science that focuses on understanding how to solve problems efficiently using algorithms. It is about d...
read more
DSA
Coding Problems on Interval and Range Manipulation
Last Updated: 27 March 2025
Interval and Range Manipulation problems are common in algorithmic challenges, often requiring efficient handling of ranges or intervals to solve a specific problem. These...
read more
DSA
Deque Traversal
Last Updated: 27 March 2025
Given a dequedqcontaining integer elements, the task is to traverse thedqand print its elements of it.Examples:Input: dq = [1, 2, 3, 4, 5]Output: 1 2 3 4 5Explanation: We ...
read more
DSA
deque
Fill and Empty a Queue
Last Updated: 04 April 2025
Given an empty queue and an array of elements, we need to perform the following two operations.1. Filling a QueueFilling a queue refers to the process of adding array elem...
read more
Queue
DSA
Data Structures
Deque Deletion
Last Updated: 29 March 2025
Given a Dequedcontaining non-negative integers.Complete below functionsdepending type of query as mentioned andprovided to you (indexing starts from 0):1.eraseAt(x):this f...
read more
DSA
deque
Maximum XOR Queries With an Element From Array
Last Updated: 18 April 2025
Given an array arr[] of size n containing non-negative integers and also given a list of q queries in a 2D array queries[][], where each query is of the form [xi, mi]. For...
read more
Bit Magic
DSA
Group Balls by Sequence
Last Updated: 19 June 2025
Given an integer array arr[], where each element represents the number written on a ball, and an integer k, determine whether it's possible to rearrange all the balls into...
read more
Sorting
DSA
Candidates with majority vote
Last Updated: 25 June 2025
Given an array arr[] of positive integers representing votes for candidates, return all candidates who receive more than ⌊n/3⌋ votes.Return the result in increasing order ...
read more
DSA
1
2
3
4
...
1533
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !