Sunidhi Bansal has Published 1100 Articles

Count consonants in a string (Iterative and recursive methods) in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 12:21:38

578 Views

We are given a string with let’s say str of any length and the task is to calculate the count of consonants in the given string using both iterative and recursive methods.Consonants are those alphabets that are not vowel i.e alphabets except a, i, e, o, u are considered as ... Read More

Count common subsequence in two strings in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 12:19:02

461 Views

We are given two strings, let's say str1 and str2 containing characters and the task is to calculate the common subsequences in both the strings. In the below program we are using dynamic programming and for that we need to know what dynamic programming is and at what problems it ... Read More

Count changes in Led Lights to display digits one by one in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 12:16:03

257 Views

We are given a positive number let’s say num and the task is to calculate the count of changes in the Led lights displayed one by one. We will assume that initially all LEDs are off and they will be started based upon the string value.For solving this question we ... Read More

Count number of digits after decimal on dividing a number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 12:13:39

465 Views

We are given two integer numbers let’s say num1 and num2 and the task is to divide the num1 with num2 and calculate the count of digits after decimal on dividing these given numbers.For ExampleInput − num1 = 2, num2 = 5 Output − count is 1Explanation − when we ... Read More

Count BST nodes that lie in a given range in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 12:11:37

186 Views

We are given a binary search tree made up of nodes and also a range and the task is to calculate the count of nodes that lies in the given range and display the result.A Binary Search Tree (BST) is a tree in which all the nodes follow the below-mentioned ... Read More

Count maximum elements of an array whose absolute difference does not exceed K in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 12:06:27

455 Views

We are given an array let’s say, arr[] of integer elements of any given size and a positive integer k and the task is to calculate the count of those element pairs whose absolute difference doesn’t exceed the given integer k.Arrays a kind of data structure that can store a ... Read More

Count divisors of array multiplication in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 12:02:31

194 Views

We are given an array let’s say, arr[] of integer elements of any given size and the task is to calculate the count of the factors of a number calculated by multiplying all the array elements.Arrays a kind of data structure that can store a fixed-size sequential collection of elements ... Read More

Count array elements that divide the sum of all other elements in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 12:00:37

246 Views

We are given an array let’s say, arr[] of integer values and the task is to calculate the count of array elements that divides the sum of all other elements.Arrays a kind of data structure that can store a fixed-size sequential collection of elements of the same type. An array ... Read More

Count distinct pairs from two arrays having same sum of digits in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 11:57:58

160 Views

We are given with two arrays let’s say, arr_1[] and arr_2[] having integer values and the task is to calculate the count of distinct pairs having the same sum of digits. It means, one value should be selected from an arr_1[] and second value from arr_2[] to form a pair ... Read More

Count number of distinct pairs whose sum exists in the given array in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-May-2020 11:53:57

406 Views

We are given an array of, let's say, arr[] of integer values of any respective size and the task is to calculate the count of the number of distinct pairs available in a given array whose sum also exists in the same array.Arrays a kind of data structure that can ... Read More

Advertisements