How to Print the middle node of a linked list using java

By Anubhav Srivastava

Hi, coders! Most of you people are familiar with the linked list data structure but did you people ever tried to print the middle node of a singly linked list in Java, if not I am .... Read More

Fuzzy String Matching in Python

By Asma Khan

Google defines fuzzy as difficult to perceive, indistinct or vague. Unlike boolean, fuzzy logic answers the question of how much similar are the strings. Boolean logic simply answe.... Read More

Find difference between two dates in C++

By Pritam Hande

In this tutorial, we will learn how to find the difference between two dates in C++. Before proceeding further first, let’s go through some basic information related to the t.... Read More

Conversion of String to Enum in Java

By Krishna Lakhi

Hey Everyone! In this article, we will learn how to convert a string to an enum data type in Java. Enum in Java Enum is a special data type in Java in which it’s field consis.... Read More

Anonymous Function in Python

By Rohit Arodi

In this tutorial, we are gonna see what is an Anonymous Function in python, How it works and Some Examples on Anonymous function. What is Anonymous Function Anonymous Function also.... Read More

Find Intersection Of Two Lines In Java

By Shubham Kumar

In this instructional exercise, you will figure out how to find the intersection of the two lines by taking the two lines equation on a 2-D plane through a very simple Java code. I.... Read More

XOR code to find smallest B for which A+B=A^B

By Ashutosh Srivastava

Here we will learn to work with the properties of XOR operation in Python with an easy example. XOR GATE in Python The XOR operation basically outputs 1 if the inputs (binary) are .... Read More

Display the upper triangular matrix in Python

By Ashutosh Srivastava

In this tutorial, we will study the process of the upper triangular matrix in python3. Let’s understand what the upper triangular matrix means, it means all the values above .... Read More

Related Posts