Find the repeating and missing number in an array(C++)

By Prayas Sambhare

In this post, we are going to find the repeating and missing number in an array in C++. It is a famous question about array implementation. Let us understand the problem first. Und.... Read More

Solve Stock Span Problem in C++

By Prayas Sambhare

Hello! In this post, we will study the stock span problem with the help of the C++ program. Let us understand the problem first. You are given a list of ‘n’ daily price.... Read More

Accept a sentence and print only the first letter of each word in capital letters separated by a full stop using functions in Python

By Souhardya Ganguly

In this Python tutorial, you will learn how to accept a sentence and print only the first letter of each word of the sentence in capital letters separated by a full stop. We will i.... Read More

Using JavaScript Random in Different ways

By Vikneshwar GK

JavaScript Math.random() is a Math function that returns a random floating-point number between [0, 1) that is, including 0 but excluding 1. In this tutorial, we will see the diffe.... Read More

Binomial Theorem Python – Printing the Binomial Series

By Karan Trehan

In this tutorial, we will see how to implement the Binomial Theorem in Python and print the corresponding series for a given set of inputs. We use Binomial Theorem in the expansion.... Read More

An introduction to the Javascript Prototype

By Abhishek Swaminathan

This post is to introduce you to the concept of the Javascript Prototype with the corresponding understandable code snippets. Object-oriented languages like C++ and Java have a mec.... Read More

IPL Winner Prediction using Machine Learning in Python

By Abinash Reddy

In this tutorial, we are going to build a prediction model that predicts the winning team in IPL using Python programming language. The dataset can be download from here. The datas.... Read More

Encrypt And Decrypt files Using Python

By Abinash Reddy

In this tutorial, we will learn how to Encrypt and Decrypt files using Python. Before going to encrypting and decrypting files first let’s discuss a few points about encrypti.... Read More