3 min Coding Problems Reverse Words in a String Problem Statement Given a sentence of the form of words separated by spaces, return a new sentence that… November 12, 2021 Read More
3 min Coding Problems Subarray Sum Equals K Problem Statement Given an array a[], find the number of subarrays in it, which have a sum of… November 12, 2021 Read More
3 min Coding Problems Maximum Product Subarray Problem Given an array A[] of N positive integers. The task is to find a non empty subarray having… November 12, 2021 Read More
3 min Coding Problems Next Permutation Problem Given an array A[] of N distinct integers. The task is to return the lexicographically greater permutation than… November 12, 2021 Read More
5 min Coding Problems Egg Dropping Puzzle You are given A eggs, and you have access to a building with B floors from 1 to… November 11, 2021 Read More
7 min Coding Problems Smallest Positive Missing Number (Solution) Problem Statement Given an array containing both positive and negative numbers, find the smallest positive number excluded from… November 11, 2021 Read More
3 min Coding Problems Largest Subarray of 0’s and 1’s Given a binary array A[] consisting of 0’s and 1’s. The task is to return the length of… November 11, 2021 Read More
5 min Coding Problems Kth Largest Element In An Array Problem Statement Given an integer array, A[] and an integer K. The task is to return the Kth… January 11, 2022 Read More
7 min Coding Problems Rotten Oranges Problem With Solution Problem Statement Given an n * m grid, where each element can contain one of the 3 given… November 11, 2021 Read More
6 min Coding Problems Maximum Sum Rectangle Problem Statement Given a 2D matrix, find the largest possible sum submatrix in it and print its value.… November 11, 2021 Read More