Posts by Richa Sirwani

Author Biographical Info: Not available

os.unlink() method in Python with examples

By Richa Sirwani

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

Convert to list of lists using Python

By Richa Sirwani

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

Python code for Time complexity plot of Heap sort

By Richa Sirwani

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

Difference between static and non static variables in Java

By Richa Sirwani

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

Find the maximum GCD of the siblings of a Binary Tree using C++

By Richa Sirwani

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

Split the heterogeneous type list in Python

By Richa Sirwani

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