Generating first ten numbers of Pell series in Python

By Souhardya Ganguly

In this tutorial, you will learn about Pell SeriesĀ and how to generate them in Python. Let’s get started! What are Pell series? Pell Series is a series where subsequent numb.... Read More

YouTube Video To Audio Downloader using Python

By Karan Trehan

We often try to download YouTube Videos as Audios alone and for that, we generally end up searching websites that would assist us in doing the same. Subsequently, we find websites .... Read More

An introduction to Javascript Functions

By Abhishek Swaminathan

This post is a basic introduction to functions in Javascript. It demonstrates how functions in Javascript can be used like objects. What is a function in Javascript? A Javascript f.... Read More

Converting integer to roman numeral in C++

By Prayas Sambhare

In this tutorial, we are going to learn about converting an integer into its corresponding roman numeral. We will use C++ for this task. Roman numerals are something which we are f.... Read More

Convert Roman Number Into Integer using STL in C++

By Rahul Ranjan

Hello Friends, Today we are going to learn how to convert roman number into integer in C++ using STL. This problem you can do also using the stack as well as using STL. I will give.... Read More

Using JavaScript Sort in Different Ways

By Vikneshwar GK

JavaScript Array.prototype.sort() is a method to sort the elements of an array in place and return the sorted array. It basically converts all the elements into strings then sort b.... Read More

Tree Isomorphism Problem in C++

By Ranjeet V

Hello everyone, in this tutorial we will discuss the tree isomorphism problem in C++. Two trees are said to be isomorphic if one of the trees can be obtained by flipping left and r.... Read More

Python Program to find smallest missing prime number in an array

By Abinash Reddy

Given an array containing n distinct numbers. We will learn how to find the smallest missing prime number in the given array in Python. Example Input: arr[] = {2, 3, 9, 10, 5, 6} O.... Read More