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

Matrix Exponentiation in C++

By Vikash Agarwal

In this tutorial, we will learn about Matrix Exponentiation and apply it to solve linear recurrences in one variable with C++. Given a linear recurrence relation in one variable al.... Read More

Weighted Program Scheduling Problem in C++

By Vikash Agarwal

In this tutorial, we will learn about the Weighted Program Scheduling Problem in C++ programming. We will limit our discussion to scheduling programs in a single-core processor. Gi.... Read More

Longest Unique Substring using Sliding Window in C++

By Vikash Agarwal

In this tutorial, we will learn about the concept of Sliding Window and apply it to solve the Longest Unique Substring problem. Given a string, the task is to find the longest uniq.... Read More

Reverse a linked list using STL stack in C++

By Anurag Tiwari

In this tutorial, we will learn how to reverse a linked list using stack in STL in C++. Reversing of linked list can be done by many methods but using stacks is the easiest of all..... Read More

Related Posts