How to Resize an Image using Seam Carving Algorithm and Streamlit in Python

By Shrimad Mishra

Hey, Everyone Today we are going to learn how to use Seam Carving Algorithm to resize an image, and also we will use Streamlit to provide a user-friendly interface. Before diving i.... Read More

Create Multiple Subplots using Matplotlib Subplot in Python

By Shrimad Mishra

Hi, everyone in the post we are going to learn how we can Create Multiple Subplots using Matplotlib Subplot in Python. So Let’s start the learning part:- Python provides us a.... Read More

Image Viewer Using Tkinter In Python

By Shrimad Mishra

Hello, Everyone… In this post, we are going to build an Image Viewer In Python Using Tkinter. Tkinter is an inbuilt module in Python by which you can make a GUI. We are going.... Read More

C++ program to Check if a subarray with sum 0 exists or not

By Sakshi Singh

In this tutorial, We will learn how to check and if there exists any subarray with sum equals to zero or not in C++. Implement a C++ program to check if an integer array contains a.... Read More

C++ program to find Shortest unique prefix for each word in an array

By Sakshi Singh

In this tutorial, We’ll learn how to find the shortest unique prefix for every word in an array using C++. Assume that no word from the array is the prefix of the other. This.... Read More

How To Add Elements In JSON Array Using JavaScript

By Anjan Nair

In this tutorial, you will learn how to add elements in JSON array using JavaScript. JSON short for JavaScript Object Notation is a text-based representation of structured data. JS.... Read More

C++ Program to find Largest divisible subset in array

By Sakshi Singh

In this tutorial, We will learn how to return largest divisible subset in an array using C++. A subset is said to be divisible if every pair (subset[i], subset[j]) of subset satisf.... Read More

Search for a range in a sorted array using C++

By Sakshi Singh

In this tutorial, we will learn how to search for a range of an element in the given sorted array in C++. Consider a given sorted array A with possibly duplicate elements. We have .... Read More