DSA Mastery
Data structures and algorithms form the backbone of computational science, serving as the cornerstone for organizing and manipulating data efficiently. Whether you are a beginner or an experienced coder, understanding and mastering these fundamental concepts is crucial for optimizing computational processes. From the basic arrays and linked lists to more complex data structures like trees and graphs, the knowledge of these constructs is essential for tackling various computational tasks effectively. In this blog post, we delve into the importance of data structures and algorithms, exploring how they contribute to enhancing performance in a wide range of domains, from software engineering to cutting-edge machine learning applications.
Data Structures and Algorithms Roadmap
Five steps to Mastering DSA
Mastering DSA as a beginner is simplified into 5 steps:
- Choose a programming language.
- Understand time and space complexities.
- Learn basic data structures and algorithms.
- Practice a lot.
- Join competitions to get really good.
INDEX
- 1. Master at least one Programming Language
- 2. Understand Complexities
- 3. Learn essential Data Structures and Algorithms
- 3.1 - Mathematics Basic
- 3.2 - Array
- 3.3 - String
- 3.4 - Stack
- 3.5 - Queue
- 3.6 - Searching Algorithm
- 3.7 - Sorting Algorithm
- 3.8 - Divide and Conquer Algorithm
- 3.9 - Linked List
- 3.10 - Tree Data Structure
- 3.11 - Graph Data Structure
- 3.12 - Recursion
- 3.13 - Backtracking Algorithm
- 3.14 - Dynamic Programming
- 3.15 - Greedy Methodology
- 3.16 - Mathematics Advanced
- 4. Practice consistently and extensively
- 5. Compete to advance and become proficient
I. Master at least one Programming Language
Embark on your data structures and algorithms journey by mastering a programming language. Just as we learn the alphabet and grammar before writing essays, understanding the basics of a language is essential for programming.
Choose a language, whether it's Java, C, C++, Python, or any other of your preference. Before diving into coding, grasp the foundational elements of the language, including basic syntax, data types, variables, operators, conditional statements, loops, functions, etc. Optionally, explore Object-Oriented Programming (OOP) concepts to strengthen your coding foundation.
II. Understand Complexities
Now, let's delve into an interesting and crucial topic. The main goal of using DSA is to solve problems effectively and efficiently. How do you assess if your program is efficient? This is where complexities come in, and there are two types:
- Time Complexity: It measures the time needed to execute the code.
- Space Complexity: It indicates the space required for the code to function successfully.
- Design And Analysis Of Algorithms
- Designing efficient algorithms and analyzing their performance.
- Lecture Notes: Design And Analysis Of Algorithms
In DSA, you'll often encounter the term Auxiliary Space, referring to extra space used in the program beyond the input data structure.
It overlooks system-dependent constants and focuses solely on the number of modular operations performed in the entire program. Three commonly used asymptotic notations describe the time complexity of algorithms:
- Big-O Notation (Ο): Describes the worst-case scenario.
- Omega Notation (Ω): Specifies the best-case scenario.
- Theta Notation (θ): Represents the average complexity of an algorithm.
Asymptotic analysis (Big-O notation)
Basics: Asymptotic analysis
- Big-O notation in 5 minutes: YouTube
- Particularly for Big-O notation: runestone.academy
Advanced: Asymptotic analysis
- A beginner's guide to Big O notation: rob-bell.net
- Particularly for Big-O notation: YouTube
- Lecture 2: Asymptotic Notation CSCI 700: web.archive.org
Practice: Time and Space Complexity
- MCQs - Time and Space Complexity: CodeChef
- Particularly for Big-O notation: YouTube
- Practice Problems: IITK Lecture Practice
III. Learn essential Data Structures and Algorithms
Data Structures and Algorithms
- 3.1 - Mathematics Basic
- 3.2 - Array
- 3.3 - String
- 3.4 - Stack
- 3.5 - Queue
- 3.6 - Searching Algorithm
- 3.7 - Sorting Algorithm
- 3.8 - Divide and Conquer Algorithm
- 3.9 - Linked List
- 3.10 - Tree Data Structure
- 3.11 - Graph Data Structure
- 3.12 - Recursion
- 3.13 - Backtracking Algorithm
- 3.14 - Dynamic Programming
- 3.15 - Greedy Methodology
- 3.16 - Mathematics Advanced
III(1). Mathematics Basic
Basic Mathematics in DSA
- Fundamental for evaluating algorithm effectiveness.
- Essential for problems with mathematical characteristics.
- Crucial for mastering Data Structures and Algorithms.
Resources: Mathematics
- GFG: GCD and HCF (Euclidean Algorithm)
- GFG: Divisors of a number
- GFG: Prime numbers using Sieve of Eratosthenes
- GFG: Square root
- GFG: Modular Arithmetic
- GFG: Fast Power-Exponentiation by Squaring
- GFG: Factorial of a number
- GFG: Fibonacci Number
- GFG: Catalan Numbers
- GFG: Euler Totient Function
- GFG: Prime numbers & Primality Tests
- GFG: Prime Factorization & Divisors
- GFG: Chinese Remainder Theorem
- GFG: Practice Problems based on Maths for DSA
III(2). Array
The array is a fundamental and crucial data structure, presenting a linear arrangement of elements. It serves as a collection of homogeneous data types, with elements allocated contiguous memory. Thanks to this contiguous allocation, accessing any array element occurs in constant time. Each array element is identified by a corresponding index number.
Additional Array Topics to Explore
- Rotation of Array: Shifting elements in a circular manner, such as right circular shift where the last element becomes the first.
- Rearranging an array: Changing the initial order of elements based on specific conditions or operations.
- Range queries in the array: Performing operations on a range of elements, often referred to as range queries.
- Multidimensional array: Arrays with more than one dimension, commonly encountered in the form of 2-dimensional arrays, known as matrices.
- Kadane's algorithm
- Dutch national flag algorithm
Resources: Arrays
- CodeChef: Data Structure Tutorial: Array
- cs.cmu.edu: Arrays Lecture Notes
- geeksforgeeks.org: Arrays Data Structure
Practice Problems: Arrays
- CodeChef: LECANDY - Little Elephant and Candies - Editorial
- CodeChef: CNOTE - Chef and Notebooks - Editorial
- CodeChef: SALARY - The Minimum Number Of Moves - Editorial
- CodeChef: CHN15A - Mutated Minions - Editorial
- CodeChef: RAINBOWA - Chef and Rainbow Array - Editorial
- CodeChef: FRGTNLNG - Forgotten Language - Editorial
- Leetcode: Practice Arrays - Interview Level
III(3). String
A string, essentially a type of array, can be seen as an array of characters. However, it possesses distinct features, such as the last character being a null character to signify the string's end. Unique operations, like concatenation merging two strings into one, further set strings apart.
Additional String Concepts to Explore
- Subsequence and Substring: A subsequence is derived from a string by deleting one or more elements, while a substring is a contiguous segment of the string.
- Reverse and Rotation in a String: Reversing involves interchanging character positions, while rotation shifts elements circularly.
- Binary String: Comprising only two types of characters.
- Palindrome: A string with elements equidistant from its center being the same.
- Lexicographic Pattern: A pattern based on ASCII values or in dictionary order.
- Pattern Searching: Advanced topic involving searching for a given pattern within the string.
Resources: Strings
- tutorialspoint.com: C++ Strings
- guru99.com: Java strings
- docs.python.org: Python strings
- tutorialspoint.com: Python strings
- geeksforgeeks.org: Many string questions
Practice Problems: Strings
- CodeChef: CSUB - Count Substrings - Editorial
- CodeChef: LAPIN - Lapindromes - Editorial
- Leetcode: Practice Strings - Interview Level
III(4). Stack
Transitioning to more complex data structures, let's explore the Stack and Queue.
A Stack is a linear data structure that adheres to a specific order for its operations. This order can be LIFO (Last In First Out) or FILO (First In Last Out).
The complexity of the Stack as a data structure arises from its implementation, utilizing other data structures like Arrays, Linked lists, etc., chosen based on the characteristics and features specific to the Stack data structure.
Resources: Stacks
- geeksforgeeks.org: Stack Data Structure
- tutorialspoint.com: Stack Data Structure
- cs.cmu.edu: Stacks Lecture Notes
Practice Problems: Stacks
- spoj.com: JNEXT - Just Next
- spoj.com: ONP - Transform the Expression
- spoj.com: HISTOGRA - Largest Rectangle in a Histogram
- CodeChef: COMPILER - Compilers and parsers
- Leetcode: Practice Stacks
III(5). Queue
Similar to a Stack but with distinct characteristics, the Queue is another linear data structure.
A Queue operates on the principle of First In First Out (FIFO) in its individual operations.
Different types of queues include:
- Circular Queue: The last element is connected to the first element, forming a circular structure.
- Double-ended Queue (Deque): Allows operations from both ends of the queue.
- Priority Queue: Elements are arranged based on priority, with lower-priority elements dequeued after higher-priority ones.
Resources: Queues
- geeksforgeeks.org: Array Implementation of Queue
- viterbi-web.usc.edu: Stacks and Queues
- cs.cmu.edu: Stacks and Queues
Practice Problems: Queues
- spoj.com: MMASS - Mass of Molecule
- spoj.com: ONP - Transform the Expression
- codeforces.com: 281/D - Maximum Xor Secondary
- codeforces.com: contest/5/problem/C - Longest Regular Bracket Sequence
- codeforces.com: contest/343/problem/B - Alternating Current
- spoj.com: ANARC09A - Seinfeld
- Leetcode: Practice Queues
III(6). Searching Algorithm
Having explored linear data structures, it's time to delve into fundamental and widely used algorithms, starting with searching algorithms. Searching algorithms aim to locate a specific element in an array, string, linked list, or other data structures. Key searching algorithms include:
- Linear Search: Iteratively checks for the element from one end to the other.
- Binary Search: Divides the data structure into two equal parts to locate the element.
- Ternary Search: Divides the array into three parts, determining the segment to search based on partitioning values.
Other notable searching algorithms include:
- Jump Search
- Interpolation Search
- Exponential Search
Resources: Searching
- geeksforgeeks.org: Naive string searching
- cmu.edu: Detailed Theoretical analysis
- khanacademy.org: Binary search
Practice Problems: Searching
- geeksforgeeks.org: Searching Algorithms
- geeksforgeeks.org: GFG Binary Search
- Leetcode: Practice Binary-Search
III(7). Sorting Algorithm
Another crucial algorithm is the sorting algorithm, frequently employed when arranging data based on specific conditions becomes necessary. Sorting algorithms are utilized to rearrange a set of homogeneous data, such as sorting an array in increasing or decreasing order.
These algorithms rearrange the elements of a given array or list according to a comparison operator. The comparison operator determines the new order of elements in the respective data structure.
Widely Used Sorting Algorithms
- Bubble Sort
- Selection Sort
- Insertion Sort
- Quick Sort
- Merge Sort
Numerous other sorting algorithms exist, each beneficial in different scenarios.
Resources: Sorting
- khanacademy.org: Sorting
- visualgo.net: BUBBLE SORT
- youtube.com: Merge sort algorithm
- youtube.com: Quick sort algorithm
- geeksforgeeks.org: Counting Sort
Practice Problems: Sorting
- CodeChef: MRGSRT - Merge Sort
- CodeChef: TSORT - Turbo Sort
- CodeChef: MRGSRT - Merge Sort
- Leetcode: Practice Sorting
III(8). Divide and Conquer Algorithm
An intriguing and significant algorithm to learn in your programming journey is the Divide and Conquer algorithm. True to its name, it breaks down a problem into parts, solves each subproblem, and then merges the solutions to address the original problem.
The algorithmic paradigm of Divide and Conquer involves three key steps:
- Divide: Break the given problem into subproblems of the same type.
- Conquer: Recursively solve these subproblems.
- Combine: Appropriately combine the answers.
This technique is prominently featured in two sorting algorithms—Merge Sort and Quick Sort.
Resources: Divide and Conquer
Practice Problems: Divide and Conquer
- codechef.com: MRGSRT - Merge Sort
- codechef.com: TASTYD - Tasty Dishes
- codechef.com: RESTPERM - Restore the Permutation
- codechef.com: ACM14KP1 - A Magical Length
- spoj.com: HISTOGRA - Largest Rectangle in a Histogram
- CodeChef: COMPILER - Compilers and parsers
- Leetcode: Practice Divide and Conquer
III(9). Linked List
Similar to the aforementioned data structures, a linked list is a linear data structure. However, unlike an array, a linked list doesn't have contiguous memory allocation. Instead, each node in the linked list is assigned to a random memory space, and the previous node maintains a pointer to this node. Direct memory access to any node is not possible, and the linked list is dynamic, allowing for size adjustments at any time.
Linked List Variations to Explore
- Singly Linked List: Each node points only to its next node.
- Circular Linked List: The last node points back to the head of the linked list.
- Doubly Linked List: Each node holds two pointers—one pointing to the next node and the other to the previous node.
Resources: Linked List
Practice Problems: Linked List
III(10). Tree Data Structure
Having covered the basics of linear data structures, let's delve into non-linear structures, starting with the Tree.
The Tree data structure resembles an inverted tree from nature, featuring a root and leaves. The root is the initial node, and the leaves are at the bottom-most level. Notably, there's only one path between any two nodes in a tree.
Based on the maximum number of children a node can have:
- Binary Tree: Each node can have a maximum of 2 children.
- Ternary Tree: Each node can have a maximum of 3 children.
- N-ary Tree: A node can have at most N children.
Additional classNameifications based on node configuration include:
- Complete Binary Tree: All levels are filled, except possibly for the last level, which is filled from the left as much as possible.
- Perfect Binary Tree: All levels are filled.
- Binary Search Tree: A special binary tree where smaller nodes are on the left, and higher value nodes are on the right.
- Ternary Search Tree: Similar to a binary search tree, but with nodes having at most 3 children.
Resources: Trees
- geeksforgeeks.org: Tree Data Structure
- viterbi-web.usc.edu: Heaps (priority queue)
- visualgo.net: Heaps
- cs.cmu.edu: Priority Queues: Lecture Notes
- visualgo.net: UNION-FIND DISJOINT SETS (UFDS)
- topcoder.com: DISJOINT-SET DATA STRUCTURES
- harvard.edu: Disjoint set (Union-Find): Lecture Notes
- visualgo.net: Segment Trees: MIN SEGMENT TREE
- topcoder.com: RANGE MINIMUM QUERY AND LOWEST COMMON ANCESTOR
- iarcs.org.in: Segment Trees
- topcoder.com: BINARY INDEXED TREES: TopCoder
- visualgo.net: Binary Index Tree (Fenwick tree)
- iarcs.org.in: Binary Index Tree: ICO
- berkeley.edu: Trees (traversals)
- iarcs.org.in: Dynamic programming on trees
Practice Problems: Trees
- Leetcode: Practice Trees
- Leetcode: Practice Heap (Priority Queue)
- Leetcode: Practice Segment Tree
- Leetcode: Practice Union Find
- Leetcode: Practice Binary Indexed Tree
- Leetcode: Practice Depth-First Search
- Leetcode: Practice Breadth-First Search
- Leetcode: Practice Binary Search Tree
- Leetcode: Practice Trie
III(11). Graph Data Structure
Moving on to another crucial non-linear structure, let's explore the Graph. Unlike the Tree, a Graph lacks a specific root or leaf node and allows traversal in any order.
A Graph is a non-linear structure composed of a finite set of vertices (or nodes) and a set of edges connecting pairs of nodes. It proves invaluable in solving various real-life problems. Graphs can take different forms based on edge orientation and node characteristics.
Key concepts to explore:
- Types of Graphs: Varying types based on connectivity or weights of nodes.
- Introduction to BFS and DFS: Algorithms for traversing through a graph.
- Cycles in a Graph: Series of connections leading to a loop.
- Topological Sorting in the Graph
- Minimum Spanning Tree in Graph
Resources: Graphs
- geeksforgeeks.org: Graph Data Structure And Algorithms
- geeksforgeeks.org: Depth First Search or DFS for a Graph
- visualgo.net: GRAPH TRAVERSAL (DFS/BFS)
- geeksforgeeks.org: Dijkstra's shortest path algorithm
- visualgo.net: SINGLE-SOURCE SHORTEST PATHS
- geeksforgeeks.org: Bellman Ford Algorithm
- compprog.wordpress.com: One Source Shortest Path
- cs.princeton.edu: Minimum spanning tree
- iarcs.org.in: Articulation points
- iarcs.org.in: Strongly connected components
- geeksforgeeks.org: Topological Sorting
- jlmartin.ku.edu: Euler Paths and Euler Circuits
- codechef.com: Fast Modulo Multiplication
- codechef.com: Algos for Calculating nCr % M
Practice Problems: Graphs
- codechef.com: Two Closest
- codechef.com: Special Shortest Walk
- codeforces.com: Robot Control
- spoj.com: Arbitrage
- spoj.com: Cost
- spoj.com: Police Query
- codechef.com: Visiting Friends
- codechef.com: Chef and Roads
- codechef.com: Codechef Password Recovery
- codeforces.com: Tanya and Password
- codeforces.com: One-Way Reform
- topcoder.com: Problem Statement for NetworkSecurity
- Leetcode: Practice Graphs
III(12). Recursion
Recursion stands out as a vital algorithm leveraging the concept of code reusability and repeated code usage. Its significance extends to being the foundation for many other algorithms, including:
- Tree Traversals
- Graph Traversals
- Divide and Conquer Algorithms
- Backtracking Algorithms
To explore Recursion thoroughly, refer to the following articles/links:
Resources: Recursion
- topcoder.com: AN INTRODUCTION TO RECURSION PART ONE
- topcoder.com: AN INTRODUCTION TO RECURSION PART TWO
- geeksforgeeks.org: Introduction to Recursion
- loveforprogramming.quora.com: Backtracking, Memoization & Dynamic Programming!
- interviewing.io: Recursion Interview Questions & Tips
Practice Problems: Recursion
- codechef.com: Connecting Soldiers
- codechef.com: Fit Squares in Triangle
- Leetcode: Practice Recursion
III(13). Backtracking Algorithm
Derived from Recursion, the Backtracking algorithm allows for retracing if a recursive solution fails, exploring alternative solutions. It systematically tries out all possible solutions to find the correct one.
Backtracking is an algorithmic technique that incrementally builds a solution, removing failed solutions that don't meet problem constraints.
Key problems to tackle in Backtracking algorithms:
- Knight's Tour Problem
- Rat in a Maze
- N-Queen Problem
- Subset Sum Problem
- M-Coloring Problem
- Hamiltonian Cycle
- Sudoku
Resources: Backtracking
- geeksforgeeks.org: Backtracking Algorithms
- codeforces.com: Recursion and Backtracking
- codeforces.com: Backtracking: the essential part of dynamic programming
- loveforprogramming.quora.com: Backtracking, Memoization & Dynamic Programming!
- geeksforgeeks.org: Backtracking Archives
Practice Problems: Backtracking
III(14). Dynamic Programming
Dynamic Programming stands as a crucial algorithm, serving as an optimization over plain recursion. It becomes particularly valuable when a recursive solution involves repeated calls for the same inputs, allowing for optimization.
Those who cannot remember the past are condemned to repeat it.- Dynamic Programming
Key concepts to explore in Dynamic Programming:
- Tabulation vs Memoization
- Optimal Substructure Property
- Overlapping Subproblems Property
- Bitmasking and Dynamic Programming
- Bitmasking and Dynamic Programming
- Digit DP
Basic DP
Resources: Basic Dynamic Programming
- freecodecamp.org: Demystifying Dynamic Programming
- codeforces.com: DP Tutorial and Problem List
- topcoder.com: DYNAMIC PROGRAMMING: FROM NOVICE TO ADVANCED
- geeksforgeeks.org: Dynamic Programming
- loveforprogramming.quora.com: Backtracking, Memoization & Dynamic Programming!
Practice Problems: Basic Dynamic Programming
- codechef.com: ALTARAY
- codechef.com: AMSGAME2
- takeuforward.org: Striver DP Series
- Leetcode: Practice Dynamic Programming
Advanced DP
Resources: Adv Dynamic Programming
Practice Problems: Adv Dynamic Programming
- spoj.com: HIST2
- spoj.com: LAZYCOWS
- spoj.com: TRSTAGE
- spoj.com: RENT
- spoj.com: INCSEQ
- spoj.com: INCDSEQ
- codechef.com: Dynamic Programming Type (problem list)
- takeuforward.org: Striver DP Series
- Leetcode: Practice Dynamic Programming
III(15). Greedy Methodology
As the name implies, the Greedy methodology constructs the solution incrementally, selecting the next piece that provides the most immediate benefit — the locally optimal choice leading to global solutions.
Well-suited for problems where choosing locally optimal options also results in global optimality. For instance, the Fractional Knapsack Problem employs a local optimal strategy of choosing items with the maximum value-to-weight ratio, leading to a globally optimal solution as fractions are allowed.
To delve into the Greedy algorithm, explore these sub-topics:
- Standard Greedy Algorithms
- Greedy Algorithms in Graphs
- Greedy Algorithms in Operating Systems
- Greedy Algorithms in Arrays
- Approximate Greedy Algorithms for NP-complete Problems
Resources: Greedy
- geeksforgeeks.org: Greedy Algorithms
- iarcs.org.in: Greedy Algorithms
- topcoder.com: GREEDY IS GOOD
- jeffe.cs.illinois.edu: GREEDY IS GOOD
Practice Problems: Greedy
III(16). Mathematics Advanced
Advance Mathematics in DSA
- Fundamental for evaluating algorithm effectiveness.
- Essential for problems with mathematical characteristics.
- Crucial for mastering Data Structures and Algorithms.
Mathematical algorithm can be defined as an algorithm or procedure which is utilized to solve a mathematical problem, or mathematical problem which can be solved using DSA.
Resources: Mathematics
Practice Problems: Mathematics
IV. Practice Consistently and Extensively
Having covered the basics of major data structures and algorithms, it's time to put your knowledge into practice.
Practice makes a man perfect.
For learning DSA, consistent and extensive practice is key. Whether considered a separate step or an integral part of the learning process, dedicating time to solving problems and implementing algorithms is essential for mastery.
V. Compete to Advance and Become Proficient
Explore and enhance your coding skills on various practicing platforms. Compete, solve challenges, and advance your proficiency on platforms like:
- LeetCode
- Codeforces
- HackerRank
- CodeChef
- TopCoder
- AtCoder
- GeeksforGeeks
- InterviewBit
- Exercism
- Project Euler
Competing on these platforms will help you apply your knowledge, face diverse challenges, and continuously improve your problem-solving skills.
Tips to Boost Your Learning
Throughout the roadmap to learn DSA, consider the following tips to enhance your learning experience:
- Master the Fundamentals: Thoroughly understand the fundamentals of your chosen programming language, including basic syntax, data types, operators, variables, functions, conditional statements, loops, and Object-Oriented Programming (OOP).
- Implement Concepts Practically: Implement each small concept actively. Practice coding to reinforce your understanding of basic programming constructs.
- Grasp Complexity Analysis: Learn how to analyze the complexity of algorithms. Solve multiple questions to practice calculating complexities. Utilize quizzes on Algorithm Analysis for additional practice.
- Focus on Logic Building: Strengthen your logical thinking by solving problems from scratch without referring to solutions or editorials. The more problems you solve independently, the more robust your logic-building skills become.
- Overcome Challenges: Accept that challenges and roadblocks are part of the learning journey. If you're stuck on a problem or topic, read hints and approaches, and try to solve it independently. If needed, refer to the logic and code it yourself. If facing repeated challenges, consider revisiting the related concepts.
Remember, learning DSA is a continuous process, and persistence and problem-solving skills play crucial roles in your success.
DSA Practice Sheets
1. Striver's SDE Sheet — Top Coding Interview Problems
- Striver: Website Link
- Creator: Raj Vikramaditya (Striver)
- A compilation of essential coding interview questions in Data Structures & Algorithms. Commonly asked in interviews at prominent companies like Google, Amazon, and Facebook.
2. DSA Sheet by Love Babbar
- Love Babbar: Website Link
- Creator: Love Babbar
- A comprehensive list of 450 coding questions by a former Amazon Software Engineer. These questions help in understanding Data Structures & Algorithms and are frequently asked in interviews at companies like Amazon, Microsoft, and Google.
3. Apna College DSA Sheet
- Apna College: Google Sheet Link
- Creators: Shradha Didi and Aman Bhaiya
- A valuable resource with around 400 problems categorized by topic, along with information about companies that have posed these problems.
4. NeetCode 150
- NeetCode: Website Link
- Curated by a Google engineer
- A collection of 150 LeetCode.com questions covering important topics for interviews at FAANG and other big tech companies.
5. DSA Sheet by Arsh 60 Days Plan
- Arsh: Google Sheet Link
- Creator: Arsh Goyal
- A DSA plan with coding problems designed to prepare for interviews in 45–60 days. Arsh has a background in Samsung, CodeChef, and ISRO.
6. AlgoPrep's 151 Problems Sheet
- AlgoPrep: Google Sheet Link
- Compiled by Nishant Bhaiya from AlgoPrep
- A broad range of coding problems and solutions related to data structures and algorithms, aimed at assisting software development engineers in interview preparation for top tech firms.