Using video tags is the easiest way to add a video player to the web page to play video. You can do a lot with this video player with HTML5 DOM JavaScript. In this tutorial, I am g.... Read More
In the problem, we build a table of n rows (1-indexed). We start by using writing zero within the 1st row. Now in every subsequent row, we observe the preceding row and replace eac.... Read More
In this tutorial, we will find an element from a list that repeats more than N/3 times in Python. This question is asked in many interview/coding rounds. Problem Statement for find.... Read More
In this tutorial, we will see how to find a majority element from an unsorted list using Python. Here, the definition of the majority element will be defined below in the problem .... Read More
Consider a given array with N integers, where each element represents the ratings of N children standing in a line. We have to distribute minimum candies in C++ with the greedy alg.... Read More
In this tutorial, we will solve a problem in which we will find the area of the container which contains maximum water i.e, finding the maximum area of the container in Python. Pro.... Read More
In this tutorial, we’ll learn how to build a piano from scratch using simple HTML, CSS, and JavaScript. Firstly, we’ll structure our web app using HTML. We’ll use.... Read More
Consider two given integers N and K, We have to find the Kth permutation sequence from integer 1 to N using C++. For example, Suppose N=3 and K=4, Now, the order list of permutatio.... Read More