Posts by Abinash Reddy

Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development

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

Sides of right angled triangle from given area and hypotenuse in Python

By Abinash Reddy

In this article, we will learn how to find all the sides of a right-angled triangle from a given area and hypotenuse in Python. Examples Input: hypotenuse = 10, area = 24 Output: B.... Read More

Python Program to find the nth Kynea number

By Abinash Reddy

In this article, we will learn how to find the nth Kynea number in Python. But first, let’s discuss a few points about Kynea number. What is Kynea number? In mathematical, Ky.... Read More

Python Program to Count Magic Squares in a Grid in Python

By Abinash Reddy

In this article, we will learn how to count magic squares in a grid using Python. A Magic square is a 3 x 3 grid filled with all distinct numbers from 1 to 9 such that each column,.... Read More