Posts by Richa Sirwani
Author Biographical Info: Not available
Hello coders, in this tutorial we will learn os.unlink() method of Python with examples. Before we go ahead, we need to have some knowledge about OS module. OS module in Python hel.... Read More
Hello coders, in this tutorial we will see how to convert a list to a list of lists and a list of dictionaries to a list of lists in Python. 1. Converting a list to a list of lists.... Read More
In this tutorial, we will write the Python program for the time complexity plot of heap sort. Heap: A heap is a complete binary tree where the value of parent is greater than its c.... Read More
Hello coders, in this tutorial we will learn the basic types of variables in Java and differentiate between static and non-static variables in Java. A variable is used to store inf.... Read More
GCD (Greatest Common Divisor) is the largest number that divides two numbers. In this tutorial, we will find the maximum GCD of the siblings of a binary tree using C++. The vector .... Read More
The list in Python is a dynamic size array, that can store homogeneous type of data as well as heterogeneous type of data. But sometimes we need to access heterogeneous data separa.... Read More