Start HTML5 video from a particular time in JavaScript

By Faruque Ahamed Mollick

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

How to find K-th symbol in Grammar using C++

By Himanshu Raj

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

Find an element from a list that repeat more than N/3 times in Python

By Amrit Pratyay

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

How to find a majority element in an Unsorted List in Python

By Amrit Pratyay

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

Distribute Minimum Candies Using Greedy Algorithm in C++

By Sakshi Singh

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

Find area of container with most water in Python

By Amrit Pratyay

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

Build a Piano using Html, CSS and JavaScript

By Anil Kumar Sharma

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

C++ program to find Kth permutation Sequence

By Sakshi Singh

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