3 min Coding Problems Search 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
2 min Coding Problems Post Correspondence Problem Problem Statement The Post Correspondence Problem is a popular undecidable decision problem, introduced by Emil Post in 1946.… June 30, 2023 Read More
5 min Coding Problems Longest Common Substring Problem Statement Given two strings, the task is to find the longest common substring present in the given… June 27, 2023 Read More
3 min Coding Problems Combination Sum (With Solution) Problem Statement Given an array, a[], consisting of distinct elements, and a target sum, find all the unique… June 27, 2023 Read More
2 min Coding Problems Sort String (C++, Java, and Python) Problem Statement Given a string S of lowercase English characters ‘a’ – ‘z’. The task is to sort… June 27, 2023 Read More
4 min Coding Problems Reverse Level Order Traversal Problem Statement Given a binary tree, return the reverse level order traversal of its nodes’ values. (i.e, from… June 27, 2023 Read More
4 min Coding Problems Remove 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
5 min Coding Problems Pattern Search – KMP Algorithm Problem Statement The Pattern Searching algorithms are also called String Matching Algorithms. These algorithms are very helpful in… June 26, 2023 Read More
3 min Coding Problems Reverse String (C++, Java, and Python) Problem Statement Given a string S. The task is to reverse the string. Examples: Input: S = “FACE”Output:… June 23, 2023 Read More
4 min Coding Problems Spiral Order Matrix Problem Statement Given a matrix A of size N X M. The task is to print the matrix… June 23, 2023 Read More