ProDeveloperTutorial.com
  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial

ProDeveloperTutorial.com

  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial
ProDeveloperTutorial.com

What are You Looking For?

  • Coding Interview Questions
  • C++ Tutorial
  • DataStructure and Algorithms
  • C Language Tutorial
ProDeveloperTutorial
onJanuary 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…
Discover More
ProDeveloperTutorial
onJanuary 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…
Discover More
ProDeveloperTutorial
onJanuary 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…
Discover More
ProDeveloperTutorial
onJanuary 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…
Discover More
ProDeveloperTutorial
onJanuary 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 :…
Discover More
ProDeveloperTutorial
onJanuary 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…
Discover More
ProDeveloperTutorial
onJanuary 16, 2025

Find the Maximum and minimum of an array

Question: Given an array, find the Max and Min of the array, with less number of comparisons. Example: Input : {5, 4, 3, 2, 1} Max element = 5…
Discover More
ProDeveloperTutorial
onJanuary 16, 2025

Reverse an array

Question: Given an array, print that array in reverse order. Example: Input : {5, 4, 3, 2, 1} Output : {1, 2, 3, 4, 5} Solution: We can solve…
Discover More
ProDeveloperTutorial
onJanuary 16, 2025

Min Edit Distance

In this tutorial we shall solve min edit distance with help of DP. Problem statement: You are given 2 strings. You need to find min distance…
Discover More
ProDeveloperTutorial
onJanuary 16, 2025

Egg Dropping Problem

In this tutorial we shall solve another classical DP problem. This problem is bit complex to understand. Hence first we shall solve this…
Discover More

Posts pagination

Previous 1 … 41 42 43 … 70 Next
ProDeveloperTutorial.com
Tutorials and Programming Solutions
  • DSA
    • Algorithms and Data Structures Tutorial
    • Crack The Coding Interview (DSA Sheet)
  • Coding Languages
    • C++ Tutorial
    • C language Tutorial
    • Linux Shell Scripting Tutorial
    • GIT Tutorial
    • Linux System Calls Tutorials
    • Shell Script Tutorial
  • System Design Tutorial
© 2024 — ProDeveloperTutorial. All Rights Reserved.