Finding Minimum Cost Path in a 2-D Matrix in C++

By Vishal Kumar

In this tutorial, we are going to solve a particular problem which is how to find Minimum Cost Path in a 2-D Matrix in C++. We are going to use dynamic programming to solve this pr.... Read More

Find the smallest missing number in an array in C++

By Vishal Kumar

In this tutorial, we are going to learn how to find the smallest missing number in an array in C++. We can solve this problem either by using a linear search or by using binary sea.... Read More

Shift elements of an array to Left in Java

By Kollabathula Preetham

In this tutorial, we will learn how we can shift the elements of an array to left using loops in Java. In this problem, we shift each of the elements of the array to left with the .... Read More

How to Print a Staircase Pattern in Java

By Kollabathula Preetham

In this tutorial, we will learn how to print a Staircase pattern in Java. A staircase can be either Left-Aligned or Right-Aligned. A staircase is a simple java pattern program whic.... Read More

Shift elements of an array to Right in Java

By Kollabathula Preetham

In this tutorial, we will learn how we can shift the elements of an array to right using loops in Java. In this problem, we shift each of the elements of the array to right with th.... Read More

Time Conversion in Java

By Kollabathula Preetham

In this tutorial, we are going to learn Time conversion in Java (i.e) how we can convert 12-hour time notation to 24-hour time notation. In simple words given a time in 12-hour AM/.... Read More

Implementing Lucas Series in Java

By Kollabathula Preetham

In this tutorial, we will learn how to implement Lucas series in Java. So what is Lucas Series? Lucas Series Lucas Series is an integer sequence which is named after a mathematicia.... Read More

Calculating the sum of all numbers in a String in Java

By Kollabathula Preetham

In this tutorial, we will be calculating the sum of all numbers in a String in Java. The problem is pretty simple. We are supposed to add up all the numbers in a string. The part w.... Read More

Related Posts