ProDeveloperTutorialonAugust 6, 2026 Arrays: Find the closest greater element for every array element from another array Problem Statement: You are given 2 arrays a[] and b[], you need to build a new array c[], such that every element of c[i], contains a value… Discover More
ProDeveloperTutorialonAugust 6, 2026 Arrays: Print in a Circular Array Problem Statement: You are given an array, and a name, you need to print all the people in the array staring from the given name. We consider… Discover More
ProDeveloperTutorialonAugust 6, 2026 Arrays: Given an array and a number n, rotate the array by n steps to its right. Example: Array = {1, 2, 3, 4, 5 ,6, 7}; n = 4 Explanation: —————————— rotate 1… Discover More
ProDeveloperTutorialonAugust 4, 2026 Arrays: Convert an array into permutation of numbers from 1 to N. Problem Statement: You are given an array of length n. You need to count the minimum number of operations to make the array into permutation… Discover More
ProDeveloperTutorialonAugust 4, 2026 Arrays: Find the minimum number to an array so the sum becomes even Problem Statement: You are given an array, you need to find the minimum number, that is greater than 0, to the array that the sum of the array… Discover More
ProDeveloperTutorialonAugust 2, 2026 Arrays: Cell state after K days Problem Statement: You are given a binary array of size “n” where “n > 3”. Where in “1” is active,… Discover More
ProDeveloperTutorialonAugust 2, 2026 Arrays: Create a data structure for n elements and constant operations The complexity of the operations should be as follows: * Insertion of an element – O(1) * Deletion of an element – O(1) * Finding an element –… Discover More
ProDeveloperTutorialonAugust 2, 2026 Arrays: Given a sorted array return the absolute distinct count. Problem Statement: You are given an sorted array with duplicates and -ve values. You need to return the absolute values of distinct values.… Discover More
ProDeveloperTutorialonAugust 2, 2026 Arrays: Product of array except itself Problem Statement: You are given an array of integer, you need to return the product of the given array elements except itself. You should not… Discover More
ProDeveloperTutorialonJuly 30, 2026 Shell Scripting Tutorial: Shell Script Tips on debugging shell script So this is the final chapter for shell script tutorial. If you have followed and executed all the above programming examples, you might have… Discover More