Posts by Pratik Tayade

Author Biographical Info: Not available

How to find Median in a stream of integers (running integers) in C ++

By Pratik Tayade

In this topic, we are going to learn how to find median in a stream of integers ie. running integers.  First of all, we are going to discuss the Median. Median can be simply state.... Read More

Formatted text in Linux Terminal using in Python

By Pratik Tayade

In this tutorial, we are going to discuss how to write formatted text in the Linux terminal using Python. In general, we used plain text which doesn’t support various styling.... Read More

Solve K Centers problem in Python

By Pratik Tayade

Hi everyone, in this tutorial we are going to discuss the K Centers problem in Python and see how we can solve it. In brief, we can be called K Centers as Metric k Center problem w.... Read More

How to Sort array using Stacks in C++

By Pratik Tayade

In this tutorial, we are going to discuss how to sort an array using a stack in C++. First of all, we need to understand what is a stack? In the following paragraph, we will get to.... Read More

C++ Program to solve A Boolean Array Puzzle

By Pratik Tayade

In this tutorial, we are going to solve a Boolean Array Puzzle. First of all, we need to understand what is the Boolean Array Puzzle. To understand the Boolean Array puzzle read th.... Read More

Context Manager in Python using @contextmanager decorator

By Pratik Tayade

In this tutorial, we are going to discuss the context manager in Python using @contextmanager decorator. But first, we need to understand what is context manager in detail. Python .... Read More

del and delattr() in Python

By Pratik Tayade

In this tutorial, we are going to discuss a function(method) and an operator that has the same purpose. The first one is delattr() and the second one is del. These two functions an.... Read More

CamelCase pattern matching in C++

By Pratik Tayade

In this tutorial, we are going to discuss the CamelCase pattern matching in C++. Before moving towards CamelCase programming, first, we need to understand what is CamelCase? CamelC.... Read More