Find paths from corner cell to middle cell in maze in Python

By Harsh Parmar

In this tutorial, we will learn about how we can find paths from corner cell to middle cell in a square maze in Python. So first we need to understand which type of maze input we a.... Read More

Minimum delete operations to make all elements of array same in Java

By Alok Sinha

Hello friends, today we are going to see the Java implementation of minimum delete operations to make all elements of the array the same. Firstly we will see an algorithm to demons.... Read More

C++ program to swap bits in a number

By Nishant Soni

Today we will learn how to swap bits in C++ language. Given an integer n and two-bit positions a1 and a2 inside it, swap bits at the given positions. The given positions are from t.... Read More

Lambda with if but without else in Python

By Abhishek Kaushik

Hello Friends, in this tutorial we will look at what happens when we write a lambda function with if statement and do not use else and what happens if we use if along with else in .... Read More

ObjectInputStream registerValidation() Method in Java

By Sri Vikas Prathanapu

In this tutorial, you will learn how to use the registerValidation() method in Java. First, you should know about the ObjectInputStream class which contains registerValidation() me.... Read More

A C++ program for Unrolled List

By Srirama Charan

In this tutorial, we will see how to implement an Unrolled Linked List in C++. Unrolled Linked List is a variation of the normal Linked List where more than one element is stored a.... Read More

Duplicate elements within k distance from each other in Python

By Sri Vikas Prathanapu

In this tutorial, we will learn how to check if a given array contains duplicate elements within k distance from each other in Python. In a given unsorted array with a given value .... Read More

getproperty() and getproperties() methods in Java

By Sri Vikas Prathanapu

In this tutorial, you will learn about getproperty() and getproperties() in Java. Before knowing about getproperty() and getproperties() let us see about a system(). The Java syste.... Read More

Related Posts