In this article, we will check whether given an array can form Arithmetic Progression in Python. Example Input: arr[] = {6, 4, 8, 2, 0} Output: Yes Explanation: Rearrange the given.... Read More
In this article, we will learn how to check whether the given two strings are isomorphic to each other in Python. Two strings are isomorphic if there is one-to-one mapping possible.... Read More
In this article, we will learn how to create a chessboard using Python. In this, for creating a chessboard we are going to use MatPlotLib and Numpy Python modules. Create a Chess B.... Read More
In this article, we will learn to represent n as the sum of exactly k power 2 in Python. Examples Input: n = 6, k = 2 Output: 2 4 Explanation: 2, 4 are both power of 2 and sum is 2.... Read More
In this tutorial, we going to learn how to convert day number to date in particular year using Python language. For instance, the day number is 10 in the year 2020 then the date in.... Read More
Program to find the number of ways that a given integer can be represented as the sum of the Nth power of the unique, natural numbers. For example, if X = 100 and N = 2, we have to.... Read More
In this article, we will learn how to find the maximum product quadruple in an array using Python. A subsequence of size 4 is said to be a quadruple. Example Input: arr[] = {21, 4,.... Read More
In this article, we will check whether a given matrix is an idempotent matrix or not in Python. Example Input: matrix[][] = {{3, -6}, {1, -2}} Output: .... Read More