Implementation of Latin Alphabet Cipher in Python

By Abinash Reddy

In this article, we will learn how to implement Latin Alphabet Cipher in Python. The Latin Alphabet Cipher Encryption Technique is one of the soonest and easiest methods of encodin.... Read More

Checking for Smith Number in Python using Functions

By Souhardya Ganguly

In this Python tutorial, we will learn about Smith Numbers and how to generate them in Python. What are Smith Numbers? Smith numbers have the following features:- They are composit.... Read More

The Javascript Prototype in action: Inheritance

By Abhishek Swaminathan

In my previous posts, we have learned about the Javascript Object Model and how to create classes using prototypes. In this post, we shall build upon our previous knowledge and app.... Read More

How to check whether matrix is a singular or not in Python

By Abinash Reddy

In this article, we will how to check whether a given matrix is a singular matrix or not in Python. A matrix is said to be a singular matrix if its determinant is equal to zero. Ex.... Read More

Check Whether String is Palindrome or Symmetrical in Python

By Srishti Chakraborti

In this tutorial, we will check whether a given string is Palindrome or Symmetrical using the Python language. Before doing this task, we need to know about a string in Pyth.... Read More

Building Pseudo Random Number Generator from scratch in JavaScript

By Vikneshwar GK

Pseudo-Random Number Generator otherwise called PRNG is a concept that involves producing a series of random numbers using mathematical formulas. Generating a random number is not .... Read More

Mirror Characters using Dictionary in Python

By Srishti Chakraborti

In this tutorial, we will be solving a task to mirror characters from a given point of a string using dictionary in Python. If you have worked with Python before, you should know .... Read More

Partitioning Algorithms in C++

By Prayas Sambhare

Hello! Today we are going to study partitioning algorithms in C++. This algorithm is an essential part of the quick sort algorithm. Hence to learn the quick sort algorithm it is ne.... Read More