Sunidhi Bansal has Published 1100 Articles

Count of character pairs at same distance as in English alphabets in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 06:16:00

100 Views

We are given a string of characters and the task is to calculate the count of character pairs having pairs at the same distance as we have in english alphabets.Input − string str = ‘Tutorials Point’Output − Count of character pairs at same distance as in English alphabets are: 5Explanation ... Read More

Count of numbers having only 1 set bit in the range [0, n] in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 06:14:40

165 Views

We are given a number and the task is to calculate the count of numbers from the range 0 till the given number let’s say, num having exactly one set bitSet bits in a binary number is represented by 1. Whenever we calculate the binary number of an integer value ... Read More

Count of matrices (of different orders) with given number of elements in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 06:12:30

166 Views

We are given the total number of elements and the task is to calculate the total number of matrices with different orders that can be formed with the given data. A matrix has an order mxn where m are the number of rows and n are the number of columns.Input ... Read More

Count of elements of an array present in every row of NxM matrix in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 06:11:21

545 Views

We are given an array of integer type elements and a matrix or 2-D array of given row and column size and the task is to calculate the count of elements of an array that are present in each row of a matrix.Input int arr = { 2, 4, 6} and ... Read More

Count pairs from two linked lists whose product is equal to a given value in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 06:08:56

88 Views

We are given with two linked lists and the task is to form the pairs using the integer elements of linked lists such that their product is equal to a given value which is let’s say, k. A linked list is a sequence of data structures, which are connected together ... Read More

Count pairs from two linked lists whose sum is equal to a given value in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 06:06:40

135 Views

We are given with two linked lists and the task is to form the pairs using the integer elements of linked lists such that their sum is equal to a given value which is let’s say, k. A linked list is a sequence of data structures, which are connected together ... Read More

Count pairs in a sorted array whose product is less than k in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 06:03:22

183 Views

We are given a sorted array of integer type elements and an integer variable x and the task is to form the pairs from the given array and calculate the product of elements in the pair and check whether the calculated product is less than k or not.Input int arr[] = ... Read More

Count pairs in a sorted array whose sum is less than x in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 06:00:43

522 Views

We are given a sorted array of integer type elements and an integer variable x and the task is to form the pairs from the given array and calculate the sum of elements in the pair and check whether the calculated sum is less than x or not.Input − int ... Read More

Count pairs in an array such that both elements has equal set bits in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 05:58:22

173 Views

We are given an array of integer type elements and the task is to form the pairs from the given array and calculate the set bits of elements in the pair and check whether both the elements are having equal number of set bits or not.Set bits in a binary ... Read More

Count pairs in array whose sum is divisible by K in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 02-Nov-2020 05:56:19

2K+ Views

We are given an array of integer type elements and the task is to form the pairs from the given array and calculate the sum of elements in the pair and check whether the given sum is divisible by k or not.Input − int arr[] = {4, 1, 2, 0, ... Read More

Advertisements