All Hard Articles
Prerequisite: Turtle Programming Basics Turtle is an inbuilt module in Python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on… Read More
The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other. For example, the… Read More
Given four integers N, A, K, n where N represents the number of sides the polygon, A represents the initial angle of the polygon, K… Read More
The PostgreSQL REGEXP_MATCHES() function is used to match a POSIX regular expression against a string and subsequently returns the strings that match the pattern. Syntax:REGEXP_MATCHES(source_string,… Read More
In this article, we will look into the step-by-step process of resetting the Postgres user password in case the user forgets it. PostgreSQL uses the… Read More
In PostgreSQL, the NTH_VALUE() function is used to get a value from the nth row in a result set. Here is the syntax of the… Read More
Given an array arr[], the task is to check that if there exist a triplet (i, j, k) such that arr[i]<arr[k]<arr[j] and i<j<k then print… Read More
Deleting data is one of the primary operations when it comes to data analysis. Very often we see that a particular column in the DataFrame… Read More
Given a nested dictionary, perform inversion of keys, i.e innermost nested becomes outermost and vice-versa. Input : test_dict = {“a” : {“b” : {}}, “d”… Read More
In this article, how we can filter the words from a given series which contain two or more vowels. Here we’ll see two ways in… Read More
Interfaces and Services is a process that generally provides and gives a common technique for each layer to communicate with each other. Standard terminology basically… Read More
Prerequisite: Introduction to pyqt-5 A clock or watch is called “analog” when it has moving hands and (usually) hours marked from number 1 to 12… Read More
The task is to send data of HTML form directly to JSON file. Approach: We have an HTML form containing several fields such as name,… Read More
Registration or Sign Up on any website always requires a confirmed password input and it must be the same as the password. It is basically… Read More
Fluttertoast is used to create a toast message by writing only one line of code. Below are some steps to create a Fluttertoast in Flutter.… Read More
Given an un-directed and unweighted connected graph, find a simple cycle in that graph (if it exists). Simple Cycle: A simple cycle is a cycle… Read More
Consider a situation where we have a set of intervals and we need the following operations to be implemented efficiently:  Add an intervalRemove an intervalGiven… Read More
In this article, we are trying to track an object in the video with the image already given in it. We can also track the… Read More