Sieve of Eratosthenes in C++

By Raj Gaurav

In this tutorial, we learn about sieve of Eratosthenes algorithm in C++. Before we start, let’s know about what is sieve of Eratosthenes algorithm? sieve of Eratosthenes algorith.... Read More

Finding and using Euclidean distance using scikit-learn

By Paaritosh Sujit

To find the distance between two points or any two sets of points in Python, we use scikit-learn. Inside it, we use a directory within the library ‘metric’, and another.... Read More

List in C++: Basic Functions

By Ranjeet V

In this tutorial, we will learn about the list container of C++ and some basic functions related to it. Lists in C++, are sequence containers that allocate memory in a non-contiguo.... Read More

C++ program to print the boundary elements of a matrix

By Vikas Sharma

In this tutorial, we will learn how to find the matrix boundary elements using C++ with some cool and easy examples. In many situations, you might have to come up with this type of.... Read More

How to add Emojis in a Python Program

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning how we can add Emojis in a Python Program. Emojis are a visual representation of an emotion or an entity from various genr.... Read More

Detecting the handwritten digit in Python

By Nikita Pande

In this tutorial, you will create a neural network model that can detect the handwritten digit from an image in Python using sklearn. A neural network consists of three types of la.... Read More

Check If A Number Is A Happy Number

By Svarnim Agarwal

In this tutorial, we will be looking at a python program to check if a number is a happy number or not. We will be using the following Python concepts to solve this problem: Python.... Read More

Delay() function in C++

Delay() function in C++

By Ranjeet V | October 19, 2019

Hello everyone, In this post, we will learn about the delay() function in C++. There can be many instances when we need to create a delay in our programs. C++ provides us with an easy way to do so. We can use a delay() function for this purpose in our code. This function is imported […] Read More