Merge two sorted arrays in C++

By Ayush Singh

This article will guide you on how to write an efficient program to merge two sorted arrays in C++. To understand better, let us see some examples.If the input arrays are : a[ ]={1.... Read More

Gradient Descendent – A Minimization Technique in Python

By Praveen Kumar

In this tutorial, We are going to understand a minimization technique in machine Learning called Gradient Descendent. This is an optimization algorithm that finds a minimum of func.... Read More

Factorial of a number using userdefined function in Python

By Sameer Chachiya

In this tutorial, we will learn how to find the factorial of a given number without using the inbuilt function i.e math.factorial() in Python. Python providing a fantastic set of l.... Read More

Convert a Singly Linked List to an Array in Python

By Sameer Chachiya

In this tutorial, we will learn how a Singly Linked List can be converted to an Array in Python. Before jumping into the actual topic let’s gain a little knowledge of how bot.... Read More

Find number of squares inside a given square grid in C++

By HARISHWAR REDDY MUNUKUNTLA

In this tutorial, we will check out how to find the number of squares inside a given square grid in C++ with the corresponding code. If the square grid contains a side of N*N, then.... Read More

Find elements which are present in first array and not in second in C++

By Anubhav Bansal

We are given two arrays and we have to find numbers that are present in the first array, but not present in the second array. Elements that are present in the first array and not i.... Read More

Delete files using send2trash module in Python

By Avinash Bhargav Kompalli

In this tutorial let us see how to delete files or folders by using the send2trash module in Python. Python provides other modules like os.unlink, os.remove, and os.rmdir to delete.... Read More

Word Collocations in NLP

By Praveen Kumar

In this tutorial, We will learn about Collocation in Natural Language Processing with Python program. We will start this tutorial with a question What is collocation? Collocation i.... Read More