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

Check if two Date Ranges Overlap or not in Java

By Ishika Koytekar

In this tutorial, we are going to learn to check if two Date Ranges Overlap or not in Java. There would be 4 possible overlaps. Consider two date ranges, start date be s1, the end .... Read More

Group a list by the values in Python

By Arpitha

Here we will learn how to group a list by the values in Python. List grouping based on values converts a list to the lists of list according to the values taken as the second eleme.... Read More

Random Binary Tree Generator using Python

By Deepak

Generating random binary tree using Python having elements (numbers, primes, alphabets) Initialize Node for binary tree Binary tree is created with insertion at end process. class .... Read More

Convert Date to String in Java

By Smitha S Maganti

In this demo, we will be learning how to convert Date to String using the Java programming language. The conversion of Date to String is called formatting. We make use of the class.... Read More