Posts by Abinash Reddy
Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development
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 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
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
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
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
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