Prateek Jangid has Published 165 Articles

Find the Number of permutation with K inversions using C++

Prateek Jangid

Prateek Jangid

Updated on 24-Nov-2021 07:36:22

537 Views

In an array, A pair a[i], a[j] is known as an inversion if a[i] > a[j] and i < j. We have two numbers N and k, and need to figure out how many possible permutations of the first N numbers end in a perfect K inversion. So here is ... Read More

Find the Number of Pentagons and Hexagons on a Football using C++

Prateek Jangid

Prateek Jangid

Updated on 24-Nov-2021 07:27:22

296 Views

As we all know, pentagons and hexagons are equally essential parts of football. These shapes fit together like a puzzle for forming a perfectly spherical shape. So here we have a football, in which we have to find the hexagons and pentagons.We will use the Euler characteristic to solve the ... Read More

Find the Number of Paths of Weight W in a K-ary tree using C++

Prateek Jangid

Prateek Jangid

Updated on 24-Nov-2021 07:22:58

248 Views

In this article, we'll use C++ to calculate the number of weight W paths in a K-ary tree in this article. We've given a K-ary tree, which is a tree in which each node has K children and each edge has a weight assigned to it, with weights descending from ... Read More

Find the Nth_Non_Square_Number using C++

Prateek Jangid

Prateek Jangid

Updated on 23-Nov-2021 10:35:55

306 Views

We all know about the numbers that are not square of any number like 2, 3, 5, 7, 8, etc. There are Nth numbers of non-square numbers, and it is impossible to know every number. So In this article, we will explain everything about the square-free number or non-square number ... Read More

Find the Nth Number Made Up of only Odd Digits using C++

Prateek Jangid

Prateek Jangid

Updated on 23-Nov-2021 10:35:12

605 Views

C++ has a huge list of functions to solve mathematical issues. One of the mathematical functions is to find Nth odd digits using codes. This article will describe the complete approach of finding the odd Nth number and understand what odd numbers are and what numbers are made up of ... Read More

Advertisements