ProDeveloperTutorialonJanuary 17, 2025 Searching and Sorting: Get the fixed point in an array Problem Statement: You are given an sorted ascending array, you need to find the fixed point. A fixed point is an element in the array, such…
ProDeveloperTutorialonJanuary 17, 2025 Strings: Recursively print all sentences that can be formed from list of word lists Problem Statement: You are given list of words, you need to print all the combinations of phrases that can be formed by picking one word from…
ProDeveloperTutorialonJanuary 17, 2025 Strings: Find minimum operations required to transform a string into another string Problem Statement: You are given 2 strings, you need to convert str1 to str2 by only moving a character from str1 to front. If the string can…
ProDeveloperTutorialonJanuary 17, 2025 Strings: Remove all consecutive duplicates from the string Problem Statement: You are given a string S, you have to remove all the consecutive string. Example Input: aabb Output: ab Solution The…
ProDeveloperTutorialonJanuary 17, 2025 Strings: Minimum Window Substring Problem Statement: You are given 2 strings s1 and s2. You need to find the smallest substring in s1 that has all the characters of s2. Example…
ProDeveloperTutorialonJanuary 17, 2025 Minimum characters to be added at beginning to make string palindrome Problem Statement: You are given a string, you need to tell minimum characters to be added at the beginning to make the string palindrome.…
ProDeveloperTutorialonJanuary 17, 2025 Strings: Check if it is possible to re-arrange characters in a string, such a way that no two adjacent are same Problem Statement: You are given a string, you need to check if ti is possible to rearrange the string such that no two adjacent characters…
ProDeveloperTutorialonJanuary 17, 2025 Strings: Smallest distinct window Problem Statement: You are given a string ‘s’. You need to find the smallest window length that contains all the characters of the…
ProDeveloperTutorialonJanuary 17, 2025 Strings: Find the longest common subsequence between two strings. Problem Statement: You are given 2 strings you need to return the longest common subsequence between two strings. Example str1 = ABC str2 = AC…
ProDeveloperTutorialonJanuary 17, 2025 Strings: Minimum swaps required for bracket balancing Problem Statement: You are given a string with 2N characters consisting of equally “[” and “]” brackets. They are…