How to find common dates between two date ranges in Java

By Tishya Thakkar

In this tutorial, we will learn how to find common dates between two date ranges in Java. To do this, we will be using the LocalDate Java class. This will give us an immutable date.... Read More

How to join strings in C++

By Arpitha

Let’s have a look at how to join strings in C++ language. It is very much needed to join strings when there are multiple words or sentences which must be in a single word or .... Read More

Chinese Remainder Theorem in Java

By Vaishnavi Penumerthy

Hey guys, in this article we will learn The Chinese Remainder Theorem and implementation it in Java. The Chinese Remainder Theorem was first introduced by the Chinese mathematician.... Read More

How to generate a random numpy array in Python

By Arpitha

In this tutorial, let’s learn how to generate a random NumPy array in Python. NumPy is a Python library used to work with large dimensions of arrays and matrices. Arrays stor.... Read More

Change the value of member variable of a const function in C++

By Himanshu Sharma

In this tutorial, we will learn to change the value of member variable of a const function in c++. For this, we will use the mutable keyword in C++. The keyword mutable is mainly u.... Read More

How to convert a positive number into a Negative in Python

By Yashkumar Patel

In this tutorial, I will teach you to convert positive numbers into negatives in Python. There are basically four ways to implement this thing. However, I will show the method whic.... Read More

Euclidean Algorithm for GCD of Two Numbers in Java

By Vaishnavi Penumerthy

In this article, you are about to learn the implementation of the Euclidean Algorithm for finding the GCD of two given numbers in Java. The Euclidean Algorithm for finding the grea.... Read More

How to extract dates from a .txt file in Java

By Smitha S Maganti

In this tutorial, we are going to learn how to extract the dates from a text file. Our task is to print all the dates present in a given text file. We are going to use the concept .... Read More

Related Posts