Convert day number to date in particular year using Python

By Abinash Reddy

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

Sum of Nth Power in Python

By Abinash Reddy

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

Python program to find maximum product quadruple in an array

By Abinash Reddy

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

C++ Program to Check if two trees are Identical

By Abinash Reddy

In this article, we will learn how to implement a program to check whether the given two trees are identical or not in C++. Two trees are said to identical when they have the same .... Read More

Python program to check whether a given matrix is an idempotent or not

By Abinash Reddy

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

Calculate the average of a number’s digits in Python

By Souhardya Ganguly

In this Python tutorial, we shall be seeing how to calculate the average of the digits of a number. What exactly does this mean? Consider the number 537. The average of its digits .... Read More

Chinese Remainder Theorem with solution in C++

By Srirama Charan

Today we will see a rather interesting problem called the Chinese remainder problem and try to understand the theory behind it. The Chinese Remainder theorem was first introduced b.... Read More

Secure Passwords Using Python

By Aayushi Agrawal

Hello, friends! In this tutorial, we are going to create a Python application to secure any password that you want for more security. So let’s get started! Create Secure Pass.... Read More

Related Posts