vinaykhatri
Vinay Khatri

I am a Full Stack Developer with a Bachelor's Degree in Computer Science, who also loves to write technical articles that can help fellow developers.

Find minimum jumps required to reach the destination

Find minimum jumps required to reach the destination

You are given a list of positive numbers. In this list, each integer denotes the maximum number of …

Diameter of a Binary Tree

Diameter of a Binary Tree

Diameter of a Binary Tree The diameter of a tree or a binary tree is referred to as the count of…

Find ancestors of a given node in a Binary Tree

Find ancestors of a given node in a Binary Tree

Find all the ancestors of a given node in a binary tree You are given a binary tree and a node. …

How to Create Volumes in Docker?

How to Create Volumes in Docker?

Docker volumes are the best solution for persistent data storage problems in Docker. There might be…

How to find and remove loops in a Linked List?

How to find and remove loops in a Linked List?

Question Given a Linked List, how can you detect and remove a loop from that linked list efficie…

What is Pyramid in Python - An Introduction of Pyramid Framework

What is Pyramid in Python - An Introduction of Pyramid Framework

Python has many web frameworks, and it's always a tough choice for a developer to options down …

Check if a subarray with 0 sum exists or not

Check if a subarray with 0 sum exists or not

Problem Statement Let us say that we have given an array arr. We need to check if any subarray o…

Python Single and Double Underscore

Python Single and Double Underscore

In other programming languages, we use the underscore for the snake_casing variable names, but in P…

How to print colored Python output on the terminal?

How to print colored Python output on the terminal?

At the beginning stage, we generally built console-based Python projects where we simply printed th…

How to Get Open Port Banner in Python?

How to Get Open Port Banner in Python?

If you do not know how to check the open and close port of a target in Python, then please check ou…

Difference between Python classmethod and staticmethod

Difference between Python classmethod and staticmethod

In Python class, we can define three types of functions/methods- regular method(self), classmethod(…

How to Detect Shapes in Python Using OpenCV?

How to Detect Shapes in Python Using OpenCV?

Detecting shapes from an image is one of the coolest things you can perform with Python and OpenCV.…