Ayush Gupta has Published 541 Articles

C++ program to find first digit in factorial of a number

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:48:07

214 Views

In this article, we will be discussing a program to find the first digit in the factorial of a given number.The basic approach for this is to find the factorial of the number and then get its first digit. But since factorials can end up being too large, we would ... Read More

C++ program to find first collision point of two series

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:43:27

123 Views

In this article, we will be discussing a program to find the first collision point i.e the first point that both of the series have.In this, we would be given with five variables ‘a’, ‘b’, ‘c’, ‘d’ and ‘n’. We have to create two arithmetic progression series from these having ... Read More

C++ program to find cabs nearby using Great Circle Distance formula

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:40:29

387 Views

In this article, we will be discussing a program to find the cabs near about (less than 50km) using the Great Circle Distance formula.Let us suppose we have been given a JSON file which contains the name and coordinates of the people who need a cab and also the coordinates ... Read More

C++ program to find ‘k’ such that its modulus with each array element is same

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:34:33

258 Views

In this article, we will be discussing a program to find an integer ‘k’, such that its modulus with each element of a given array is the same.For example, let us suppose we have been given with an array, arr = {12, 22, 32}Then we have the output value of ... Read More

C++ program for Finite Automata algorithm for Pattern Searching

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:30:42

720 Views

In this article, we will be discussing a program to execute the Finite Automata algorithm for pattern searching.We are provided with a text[0...n-1] and a pattern[0...m-1]. We have to find all the occurrences of the pattern[] in the text[].For this we would preprocess the text[] and build a 2-d array ... Read More

C++ program to check whether it is possible to finish all the tasks or not from given dependencies

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:25:23

106 Views

In this article, we will be discussing a program to check if it is possible to finish all the given tasks on the basis of the given prerequisites.For example, let us say we have been given three tasks and prerequisites are [[1, 0], [2, 1], [3, 2]].( [1, 0] means ... Read More

C++ program to find ways an integer can be expressed as sum of n-th power of unique natural numbers

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:21:14

688 Views

In this article, we will be discussing a program to find ways an integer (say X) can be expressed as sum of n-th power of unique natural numbers.For example, let X = 100 and n = 2Then there would be 3 ways to express 100 as sum of squares of ... Read More

C++ program to find unique pairs such that each element is less than or equal to N

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:17:31

81 Views

In this article, we will be discussing a program to find unique pairs of numbers having elements less than or equal to N and following some certain conditions −The square of difference between the two numbers must be equal to the LCM of those two numbers.The HCF of those two ... Read More

C++ program to find union and intersection of two unsorted arrays

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:14:47

1K+ Views

In this article, we will be discussing a program to find the union and intersection of two given unsorted arrays.Let us denote the two arrays with ‘A’ and ‘B’. Then union of those arrays is denoted by A ∪ B which is basically an array of all the elements in ... Read More

C++ program to find uncommon characters in two given strings

Ayush Gupta

Ayush Gupta

Updated on 03-Oct-2019 11:11:58

685 Views

In this article, we will be discussing a program to find out the uncommon characters during comparison of two different given strings.As we know, strings are nothing but an array of characters. Therefore, for comparison we would be traversing through the characters of one string and simultaneously checking if that ... Read More

Advertisements