3 min Coding ProblemsMerge Two Sorted Arrays Without Extra Space Problem Statement We are given two sorted arrays, our task is to merge two sorted arrays in a…August 14, 2023 Read More
3 min Coding ProblemsSearch in Rotated Sorted Array Problem Statement Given an array of distinct elements, which is formed from some places rotation of a sorted…June 30, 2023 Read More
4 min Coding ProblemsRemove Duplicates from Array Problem Statement Given an array of integers, the task is to remove the duplicates from the array. Method…June 26, 2023 Read More
8 min Coding ProblemsMedian of Two Sorted Arrays Problem Statement There are two sorted arrays A and B of sizes m and n respectively. Find the…October 21, 2021 Read More
2 min Coding ProblemsMaximum Subarray Sum: Kadane’s Algorithm Problem Statement Subarrays are arrays inside another array which only contains contiguous elements. Given an array of integers,…June 15, 2022 Read More