ProDeveloperTutorialonJanuary 17, 2025 Arrays: Rearrange the array with one positive and one negative number. Problem Statement: Given an unsorted array with combination of positive and negative integers. you need to re arrange them in one positive and…
ProDeveloperTutorialonJanuary 17, 2025 Arrays: Find common element in 3 sorted arrays. Problem Statement: Given 3 sorted arrays, you need to find all the common elements in all the 3 elements. arr1 = 1 3 5 7 9 arr2 = 2 3 6 7 9…
ProDeveloperTutorialonJanuary 17, 2025 Arrays: Inversion Count in an Array Problem Statement: You are given an unsorted array, you need to return the inversion count. Inversion count is the number of swaps required to…
ProDeveloperTutorialonJanuary 17, 2025 Arrays: Merge Two Sorted arrays without using extra space You are given 2 sorted arrays, merge and sort the two arrays in such a way that the initial numbers are in the first array other will be in…
ProDeveloperTutorialonJanuary 17, 2025 Arrays: Given an array find the duplicate number Problem Statement: You are given an array of integers having “n+1” integers. The integers in the array will be from [1, n]. There…
ProDeveloperTutorialonJanuary 17, 2025 Arrays: Minimize the maximum difference between the heights Problem Statement: You are given an array that represents the height of the towers. You are also given a value “k”. You need to…
ProDeveloperTutorialonJanuary 17, 2025 Arrays: Given an array, rotate it one time Question: Given an arrays, rotate it one time cyclically Example: Input : arr = {1, 2, 3, 4, 5, 6, 7, 8} Output: rotating it one time will…
ProDeveloperTutorialonJanuary 16, 2025 Arrays: Find the union and intersection of two sorted arrays Question: Given 2 sorted arrays, find the union and intersection Example: Input : arr1 = {1, 3, 4, 6, 8} arr2 = {2, 3, 5, 7, 8} Output: Union…
ProDeveloperTutorialonJanuary 16, 2025 Arrays: Move all the negative number in beginning Question: Given an unsorted array with positive and negative elements, move all the elements to the beginning of the array. Example: Input :…
ProDeveloperTutorialonJanuary 16, 2025 Arrays: Find the k’th smallest/largest element in an array Question: Given an unsorted array with distinct elements, you are also given an integer “k”. You need to find the k’th…