Striver’s SDE Sheet Challenge is back for the year 2023, and this time we are having prizes worth 2.25L. Most
Continue readingStriver’s SDE Sheet – Top Coding Interview Problems
Check out the Most Asked Coding Interview Problem list compiled by Raja Vikramaditya AKA Striver. The sheet is popularly known as “Striver’s SDE Sheet”
Continue readingStrivers A2Z DSA Course/Sheet
A2Z DSA Sheet Overview This course is made for people who want to learn DSA from A to Z for
Continue readingMost trusted 90 days roadmap to placement – Guaranteed
This roadmap is aimed at helping entry-level software engineering jobs aspirants at top tech product-based companies and startups. Note: Please
Continue readingTop Array Interview Questions – Structured Path with Video Solutions
Given below is the best-structured path to learn Arrays with the best video tutorials, and at the same time practice
Continue readingLongest Subarray with sum K | [Postives and Negatives]
Problem Statement: Given an array and a sum k, we need to print the length of the longest subarray that
Continue readingCount Subarray sum Equals K
Problem Statement: Given an array of integers and an integer k, return the total number of subarrays whose sum equals
Continue readingBinary Tree Representation in Java
A Binary Tree in Java is represented as pointers connecting to each other in a hierarchical manner where a node
Continue readingBinary Tree Representation in C++
A Binary Tree in C++ is represented as pointers connecting to each other in a hierarchical manner where a node
Continue readingRearrange Array Elements by Sign
Variety-1 Problem Statement: There’s an array ‘A’ of size ‘N’ with an equal number of positive and negative elements. Without
Continue readingRecursive Bubble Sort Algorithm
Problem Statement: Given an array of N integers, write a program to implement the Recursive Bubble Sort algorithm. Examples: Example
Continue readingRecursive Insertion Sort Algorithm
Problem Statement: Given an array of N integers, write a program to implement the Recursive Insertion Sort algorithm. Examples: Example
Continue readingRight rotate an array by D places
Problem Statement: Given an array of N integers and an integer D, right rotate the array by D place. Pre-requisite:
Continue reading