JavaScript: Functions in the Object Model

By Abhishek Swaminathan

In my previous posts, we have learned about the JavaScript Object Model using prototypes. We have created our own classes and seen how inheritance works. We have also understood th.... Read More

Array Rotation using Reversal Algorithm in Python

By Srishti Chakraborti

In this tutorial, we are going to solve the task of rotating an array to the left in Python using the Reversal Algorithm. Firstly, we need to know what is an array in Python. An.... Read More

C++ program to check whether two strings have same character or not

By Rahul Ranjan

Hello Friends, Today we are going to learn how to check whether two strings have the same character or not, the order of characters can be different. First, we will see understand .... Read More

Image Captcha with GUI (Tkinter) | Python

By Karan Trehan

Captcha! That sounds like Gotcha! Well, CAPTCHA stands for Completely Automated Public Turing test to tell Computers and Humans Apart. It does sound similar to gotcha as it detects.... Read More

Building JavaScript Array methods from Scratch

By Vikneshwar GK

Javascript Array has several methods to manipulate its elements. These are in-built methods which when called, directly outputs the result. But to understand the concept thoroughly.... Read More

Eliminating duplicates from a list using a single code of line in Python

By Sai Mukesh Reddy Gutha

Hey Coder! In this article, we are going to learn how to eliminate the duplicate elements of a list using a single line of code in Python. We are going to use one of the properties.... Read More

Possibility of Triangle with Given Angles in Python

By Srishti Chakraborti

In this tutorial, we will solve a task to check the possibility of a triangle with positive area in Python. We will take the three angles of the triangle as input. We have to see.... Read More

Generating Lyndon words of length n in Python

By Abinash Reddy

In this article, we will learn how to generate Lyndon words of a specified length n in Python. A Lyndon word is a non empty string that is strictly smaller in lexicographix oreder .... Read More