Sudhir sharma has Published 1148 Articles

Print a number strictly less than a given number such that all its digits are distinct in C++

sudhir sharma

sudhir sharma

Updated on 27-Jan-2020 06:24:36

323 Views

In this problem, we are given a number n. Our task is to print the largest number less than n such that all its digits are distinct.Let’s take an example to understand the problemInput: n = 2332 Output: 2319To solve this problem, we reverse the count of the numbers i.e. ... Read More

Print a pattern without using any loop in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:44:25

727 Views

In this problem, we are given a number n. Our task is to print patterns with decreasing to 0 or negative then increasing back to the number.Let’s take an example to understand the problem, Input: n = 12 Output: 12 7 2 -3 2 7 12To solve this problem, we ... Read More

Print a String in wave pattern in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:42:59

571 Views

In this problem, we are given a string and an integer n. Our task is to print the given string in a wave pattern of n lines.Let’s take an example to understand the problem, Input: Tutorial n = 3 Output: T             r    U ... Read More

Print all 3 digit repeating numbers in a very large number in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:38:07

333 Views

In this problem, we are given a number. And we have to print all 3 digit repeating numbers.Let’s take an example to understand the problem, Input: 98769876598765 Output:    987: 3 times    876: 3 times    765: 2 timesTo solve this problem, we will use the large number which ... Read More

Print all combinations of balanced parentheses in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:36:07

793 Views

In this problem, we are given an integer n. Our task is to print all possible pairs of n balanced parentheses.Balanced parentheses are parentheses pairs that have a closing symbol for every corresponding opening symbol. Also, pairs should be properly nested.Let’s take an example to understand the problem, Input: n ... Read More

Print all combinations of factors in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:33:42

320 Views

In this problem, we are given a number n. Our task is to print all combinations of factors of n.Let’s take an example to understand the topic better −Input: 24 Output: 2 2 2 3 2 4 3 8 3 4 6 2 12For this, we will use recursion function ... Read More

Print all combinations of points that can compose a given number in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:31:18

249 Views

In this problem, we are given the total score n. Print all combinations of basketball points that are 1, 2, and 3 that give a total score of n.Let’s see an example to understand the problem, Input: 4 Output: 1 1 1 1 1 1 2 1 2 1 1 ... Read More

Print all distinct characters of a string in order in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:28:43

1K+ Views

In this problem, we are given a string. Our task is to print all distinct characters of the string in the order they appear in the string.Let’s take an example to understand our problem, Input: tutorials Point Output: uralsPnThere are multiple ways to solve this problem but we will discuss ... Read More

Print all distinct circular strings of length M in lexicographical order in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:25:30

249 Views

In this problem, we are given a string and an integer M. our task is to print all distinct circular strings of length M in lexicographical order (alphabetical order).Let’s take an example to understand the problem, Input: str= “ssssn” M=3 Output: nss sns ssn sssExplanation − all possible circular strings ... Read More

Print All Distinct Elements of a given integer array in C++

sudhir sharma

sudhir sharma

Updated on 22-Jan-2020 12:22:59

871 Views

In this problem, we are given an array of integer values. Our task is to print all distinct elements of the array. The output should contain only distinct values.Let’s take an example to understand the problemInput: array = {1, 5, 7, 12, 1, 6, 10, 7, 5} Output: 1 5 ... Read More

Advertisements