Instruction
stringlengths
261
35k
Response
stringclasses
1 value
For this Question: You're given a string S of lowercase letters of the english alphabet. Find whether you can choose some characters of the string S in any order to create the string "red".The first and the only line of input contains the string S. Constraints 1 <= |S| <= 100 All the characters in S are lowercase ...
Compilable
For this Question: You're given a string S of lowercase letters of the english alphabet. Find whether you can choose some characters of the string S in any order to create the string "red".The first and the only line of input contains the string S. Constraints 1 <= |S| <= 100 All the characters in S are lowercase ...
Compilable
For this Question: You're given a string S of lowercase letters of the english alphabet. Find whether you can choose some characters of the string S in any order to create the string "red".The first and the only line of input contains the string S. Constraints 1 <= |S| <= 100 All the characters in S are lowercase ...
Compilable
For this Question: Given a N x M integer matrix A and Q queries of form X1 Y1 X2 Y2. Print the sum of A[i][j], for X1 <= i <= X2 and Y1 <= j <= Y2.The first line contains two integer N and M, denoting the size of the matrix. Next N line contains M integers denoting elements of the matrix. Next line contains a single ...
Compilable
For this Question: Given a N x M integer matrix A and Q queries of form X1 Y1 X2 Y2. Print the sum of A[i][j], for X1 <= i <= X2 and Y1 <= j <= Y2.The first line contains two integer N and M, denoting the size of the matrix. Next N line contains M integers denoting elements of the matrix. Next line contains a single ...
Compilable
For this Question: Given a number N, find the value of the below Equation for the given number. Equation: - N ∑ {(X - 1)<sup>3</sup> + 3(X + 1)<sup>2</sup> + 2} X = 1<b>User task:</b> Since this is a functional problem, you don’t have to worry about the input, you just have to complete the function <b>equationSu...
Compilable
For this Question: Given a number N, find the value of the below Equation for the given number. Equation: - N ∑ {(X - 1)<sup>3</sup> + 3(X + 1)<sup>2</sup> + 2} X = 1<b>User task:</b> Since this is a functional problem, you don’t have to worry about the input, you just have to complete the function <b>equationSu...
Compilable
For this Question: Given a number N, find the value of the below Equation for the given number. Equation: - N ∑ {(X - 1)<sup>3</sup> + 3(X + 1)<sup>2</sup> + 2} X = 1<b>User task:</b> Since this is a functional problem, you don’t have to worry about the input, you just have to complete the function <b>equationSu...
Compilable
For this Question: Given a number N, find the value of the below Equation for the given number. Equation: - N ∑ {(X - 1)<sup>3</sup> + 3(X + 1)<sup>2</sup> + 2} X = 1<b>User task:</b> Since this is a functional problem, you don’t have to worry about the input, you just have to complete the function <b>equationSu...
Compilable
For this Question: Given an array A[], of size N containing positive integers. You need to print the elements of an array in increasing order.The first line of the input denotes the number of test cases 'T'. The first line of the test case is the size of the array and the second line consists of array elements. For ...
Compilable
For this Question: Given an array A[], of size N containing positive integers. You need to print the elements of an array in increasing order.The first line of the input denotes the number of test cases 'T'. The first line of the test case is the size of the array and the second line consists of array elements. For ...
Compilable
For this Question: Given an array A[], of size N containing positive integers. You need to print the elements of an array in increasing order.The first line of the input denotes the number of test cases 'T'. The first line of the test case is the size of the array and the second line consists of array elements. For ...
Compilable
For this Question: Given an array A[], of size N containing positive integers. You need to print the elements of an array in increasing order.The first line of the input denotes the number of test cases 'T'. The first line of the test case is the size of the array and the second line consists of array elements. For ...
Compilable
For this Question: While Solo was enjoying her daddy's party, her little sister Tono gave her the following problem to solve: Given an array A of N integers, find the number of occurrences of the maximum integer in the array. As Solo is small and enjoying the party, please help her solve this problem.The first line...
Compilable
For this Question: While Solo was enjoying her daddy's party, her little sister Tono gave her the following problem to solve: Given an array A of N integers, find the number of occurrences of the maximum integer in the array. As Solo is small and enjoying the party, please help her solve this problem.The first line...
Compilable
For this Question: While Solo was enjoying her daddy's party, her little sister Tono gave her the following problem to solve: Given an array A of N integers, find the number of occurrences of the maximum integer in the array. As Solo is small and enjoying the party, please help her solve this problem.The first line...
Compilable
For this Question: Numbers are awesome, larger numbers are more awesome! Given an array A of size N, you need to find the maximum sum that can be obtained from the elements of the array (the selected elements need not be contiguous). You may even decide to take no element to get a sum of 0.The first line of the input ...
Compilable
For this Question: Numbers are awesome, larger numbers are more awesome! Given an array A of size N, you need to find the maximum sum that can be obtained from the elements of the array (the selected elements need not be contiguous). You may even decide to take no element to get a sum of 0.The first line of the input ...
Compilable
For this Question: Numbers are awesome, larger numbers are more awesome! Given an array A of size N, you need to find the maximum sum that can be obtained from the elements of the array (the selected elements need not be contiguous). You may even decide to take no element to get a sum of 0.The first line of the input ...
Compilable
For this Question: Given an array A[] of size N containing non-negative integers. You have to move all 0's to the end of array while maintaining the relative order of the non-zero elements. Note: You must do this in-place without making a copy of the array. Minimize the total number of operations.The first line of...
Compilable
For this Question: Given an array A[] of size N containing non-negative integers. You have to move all 0's to the end of array while maintaining the relative order of the non-zero elements. Note: You must do this in-place without making a copy of the array. Minimize the total number of operations.The first line of...
Compilable
For this Question: Given a tree consisting of N nodes (from 1 to N) rooted at 1. You are given a node, your task is to calculate the sum of values of all nodes present at the same level that is of the given node.First line of input contains two space separated integers denoting the number of nodes N and the given node ...
Compilable
For this Question: Given a tree consisting of N nodes (from 1 to N) rooted at 1. You are given a node, your task is to calculate the sum of values of all nodes present at the same level that is of the given node.First line of input contains two space separated integers denoting the number of nodes N and the given node ...
Compilable
For this Question: Given a tree consisting of N nodes (from 1 to N) rooted at 1. You are given a node, your task is to calculate the sum of values of all nodes present at the same level that is of the given node.First line of input contains two space separated integers denoting the number of nodes N and the given node ...
Compilable
For this Question: Given an integer N, find the sum of i*j for each pair (i, j) such that 1 <= i < j <= N. Since the answer can be large, output it modulo 10<sup>9</sup>+7.The first and the only line of the input contains an integer N. Constraints 2 <= N <= 200000Output a single integer, the answer to the above ...
Compilable
For this Question: Given an integer N, find the sum of i*j for each pair (i, j) such that 1 <= i < j <= N. Since the answer can be large, output it modulo 10<sup>9</sup>+7.The first and the only line of the input contains an integer N. Constraints 2 <= N <= 200000Output a single integer, the answer to the above ...
Compilable
For this Question: Given an integer N, find the sum of i*j for each pair (i, j) such that 1 <= i < j <= N. Since the answer can be large, output it modulo 10<sup>9</sup>+7.The first and the only line of the input contains an integer N. Constraints 2 <= N <= 200000Output a single integer, the answer to the above ...
Compilable
For this Question: You'll be given a word as an input, you need to find out how many words can be made out from the letters used, word given as the input might have repeated letters, so use any appropriate method to identify those to find the actual number of combinations. answer should be an integer, not a float. ...
Compilable
For this Question: You are given a string S consisting of lowercase English letters. Determine whether adding some number of a's (possibly zero) at the beginning of S can make it a palindrome.The input consists of a single string S. Constraints 1 &le; ∣S∣ &le; 10^6 S consists of lowercase English letters.If adding...
Compilable
For this Question: Given an array of N integers, your task is to calculate the sum of bit difference in all pairs which can be formed.The first line of input contains a single integer N, the second line of input contains N space separated integers depicting values of the array. Constraints:- 1 <= N <= 100000 0 <= ...
Compilable
For this Question: Given an array of N integers, your task is to calculate the sum of bit difference in all pairs which can be formed.The first line of input contains a single integer N, the second line of input contains N space separated integers depicting values of the array. Constraints:- 1 <= N <= 100000 0 <= ...
Compilable
For this Question: Given an array of N integers, your task is to calculate the sum of bit difference in all pairs which can be formed.The first line of input contains a single integer N, the second line of input contains N space separated integers depicting values of the array. Constraints:- 1 <= N <= 100000 0 <= ...
Compilable
For this Question: Given a number N, you need to check whether the given number is <b>Palindrome</b> or not. A number is said to be Palindrome when it reads the same from backward as forward.User task: Since this is a functional problem you don't have to worry about the input. You just have to complete the function <b...
Compilable
For this Question: Given a number N, you need to check whether the given number is <b>Palindrome</b> or not. A number is said to be Palindrome when it reads the same from backward as forward.User task: Since this is a functional problem you don't have to worry about the input. You just have to complete the function <b...
Compilable
For this Question: Triangle Land is a place where there are infinite countries. Each country is identified by two integers (x, y) where x >= 0 and y >= 0. Due to some mysterious event (maybe some people from earth teleporting to triangle land), some of the countries are getting infected with coronavirus. When a country...
Compilable
For this Question: Given a reference to the head of a sorted doubly-linked list and an integer k, your task is to insert the integer k in your doubly linked-list while maintaining the sort.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete the function <b...
Compilable
For this Question: There is a saying in Sara's village that "A number is called prime if the sum of all the factors of N is less than or equal to (3*N)/2 ". Given the number N, your task is to check if it is a myth or a fact for the number given.<b>User Task:</b> Since this will be a functional problem, you don't have...
Compilable
For this Question: There is a saying in Sara's village that "A number is called prime if the sum of all the factors of N is less than or equal to (3*N)/2 ". Given the number N, your task is to check if it is a myth or a fact for the number given.<b>User Task:</b> Since this will be a functional problem, you don't have...
Compilable
For this Question: There is a saying in Sara's village that "A number is called prime if the sum of all the factors of N is less than or equal to (3*N)/2 ". Given the number N, your task is to check if it is a myth or a fact for the number given.<b>User Task:</b> Since this will be a functional problem, you don't have...
Compilable
For this Question: There is a saying in Sara's village that "A number is called prime if the sum of all the factors of N is less than or equal to (3*N)/2 ". Given the number N, your task is to check if it is a myth or a fact for the number given.<b>User Task:</b> Since this will be a functional problem, you don't have...
Compilable
For this Question: In Newton City, there are N buildings in a line. A building is considered good if the height of the building is greater than or equal to all the buildings in its right side. Given the height of N buildings in the line, your task is to print the good buildings in the same order as they are given. ...
Compilable
For this Question: In Newton City, there are N buildings in a line. A building is considered good if the height of the building is greater than or equal to all the buildings in its right side. Given the height of N buildings in the line, your task is to print the good buildings in the same order as they are given. ...
Compilable
For this Question: In Newton City, there are N buildings in a line. A building is considered good if the height of the building is greater than or equal to all the buildings in its right side. Given the height of N buildings in the line, your task is to print the good buildings in the same order as they are given. ...
Compilable
For this Question: Given an integer N, your task is to return the sum of all of its divisors.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete the function <b>SumOfDivisors()</b> that takes the integer N as parameter. Constraints:- 1<=N<=10^9Return t...
Compilable
For this Question: Given an integer N, your task is to return the sum of all of its divisors.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete the function <b>SumOfDivisors()</b> that takes the integer N as parameter. Constraints:- 1<=N<=10^9Return t...
Compilable
For this Question: Given an integer N, your task is to return the sum of all of its divisors.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete the function <b>SumOfDivisors()</b> that takes the integer N as parameter. Constraints:- 1<=N<=10^9Return t...
Compilable
For this Question: Given an integer N, your task is to return the sum of all of its divisors.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete the function <b>SumOfDivisors()</b> that takes the integer N as parameter. Constraints:- 1<=N<=10^9Return t...
Compilable
For this Question: N people are standing in line numbered 1 to N from left to right. Each person wants to know the height of the person to left of him having height less than him. If there are multiple such people he wants to know the height of the person closest to him. If there is no such person report -1.The first...
Compilable
For this Question: N people are standing in line numbered 1 to N from left to right. Each person wants to know the height of the person to left of him having height less than him. If there are multiple such people he wants to know the height of the person closest to him. If there is no such person report -1.The first...
Compilable
For this Question: N people are standing in line numbered 1 to N from left to right. Each person wants to know the height of the person to left of him having height less than him. If there are multiple such people he wants to know the height of the person closest to him. If there is no such person report -1.The first...
Compilable
For this Question: Harry is very confused after knowing all about Sirius. To lighten Harry's mood Sirius asks a fun problem to him. Sirius puts K talking skulls equally spaced on the circumference of a circle. Now he enumerates them from 1 to K in clockwise order. Now given skull X and skull Z, he asks Harry to find nu...
Compilable
For this Question: Harry is very confused after knowing all about Sirius. To lighten Harry's mood Sirius asks a fun problem to him. Sirius puts K talking skulls equally spaced on the circumference of a circle. Now he enumerates them from 1 to K in clockwise order. Now given skull X and skull Z, he asks Harry to find nu...
Compilable
For this Question: Harry is very confused after knowing all about Sirius. To lighten Harry's mood Sirius asks a fun problem to him. Sirius puts K talking skulls equally spaced on the circumference of a circle. Now he enumerates them from 1 to K in clockwise order. Now given skull X and skull Z, he asks Harry to find nu...
Compilable
For this Question: Pino is super fond of candies. Today she has A chocolate candies, B orange candies, and C unknown candies. You are also given the happiness she gets after eating a particular candy. She wants to have exactly X chocolate candies and Y orange candies. She can transform an unknown candy into a candy o...
Compilable
For this Question: Pino is super fond of candies. Today she has A chocolate candies, B orange candies, and C unknown candies. You are also given the happiness she gets after eating a particular candy. She wants to have exactly X chocolate candies and Y orange candies. She can transform an unknown candy into a candy o...
Compilable
For this Question: Pino is super fond of candies. Today she has A chocolate candies, B orange candies, and C unknown candies. You are also given the happiness she gets after eating a particular candy. She wants to have exactly X chocolate candies and Y orange candies. She can transform an unknown candy into a candy o...
Compilable
For this Question: Given an integer <b>N</b>, you need to typecast this integer to String. If the typecasting is done successfully then we will print "<b>Nice Job</b>" otherwise "<b>Wrong answer</b>".User task: Since this is a functional problem you don't have to worry about the input. You just have to complete the fu...
Compilable
For this Question: Given an integer <b>N</b>, you need to typecast this integer to String. If the typecasting is done successfully then we will print "<b>Nice Job</b>" otherwise "<b>Wrong answer</b>".User task: Since this is a functional problem you don't have to worry about the input. You just have to complete the fu...
Compilable
For this Question: Santa has been trying to solve the following task. Would you please help him so that he can go back to distributing gifts? Given an integer N, print "AC" if N is 1. Otherwise, print "WA". Note: You are supposed to print "AC" and "WA" without the quotes.The input consists of a single line contai...
Compilable
For this Question: Santa has been trying to solve the following task. Would you please help him so that he can go back to distributing gifts? Given an integer N, print "AC" if N is 1. Otherwise, print "WA". Note: You are supposed to print "AC" and "WA" without the quotes.The input consists of a single line contai...
Compilable
For this Question: Santa has been trying to solve the following task. Would you please help him so that he can go back to distributing gifts? Given an integer N, print "AC" if N is 1. Otherwise, print "WA". Note: You are supposed to print "AC" and "WA" without the quotes.The input consists of a single line contai...
Compilable
For this Question: Find the number of prime numbers before N (Including that number too).The first line of the input contains the number of test cases T. Next T lines contain the value N. <b>Constraints</b> 1 <= T <= 1e5 1 <= N <= 1e5Print the number of primes number before that number.Sample Input 1: 2 3 11 ...
Compilable
For this Question: Find the number of prime numbers before N (Including that number too).The first line of the input contains the number of test cases T. Next T lines contain the value N. <b>Constraints</b> 1 <= T <= 1e5 1 <= N <= 1e5Print the number of primes number before that number.Sample Input 1: 2 3 11 ...
Compilable
For this Question: Find the number of prime numbers before N (Including that number too).The first line of the input contains the number of test cases T. Next T lines contain the value N. <b>Constraints</b> 1 <= T <= 1e5 1 <= N <= 1e5Print the number of primes number before that number.Sample Input 1: 2 3 11 ...
Compilable
For this Question: Rick wants to give Morty a chapo (a super awesome treat :P). The only condition for Morty to get a chapo is that he should be able to reach Rick's place. Both Rick and Morty live on the number line at integer points A and B respectively. There are N types of moves M<sub>1</sub>, M<sub>2</sub>,. ,...
Compilable
For this Question: Rick wants to give Morty a chapo (a super awesome treat :P). The only condition for Morty to get a chapo is that he should be able to reach Rick's place. Both Rick and Morty live on the number line at integer points A and B respectively. There are N types of moves M<sub>1</sub>, M<sub>2</sub>,. ,...
Compilable
For this Question: Rick wants to give Morty a chapo (a super awesome treat :P). The only condition for Morty to get a chapo is that he should be able to reach Rick's place. Both Rick and Morty live on the number line at integer points A and B respectively. There are N types of moves M<sub>1</sub>, M<sub>2</sub>,. ,...
Compilable
For this Question: For Christmas decoration, Jerry has set up N christmas lights in a row. The brightness of the i<sup>th</sup> light from the left is B[i]. A light at position i is powerful if its brightness is greater than or equal to the sum of brightness of all the lights to its left. Now, Tom wants the number of p...
Compilable
For this Question: For Christmas decoration, Jerry has set up N christmas lights in a row. The brightness of the i<sup>th</sup> light from the left is B[i]. A light at position i is powerful if its brightness is greater than or equal to the sum of brightness of all the lights to its left. Now, Tom wants the number of p...
Compilable
For this Question: For Christmas decoration, Jerry has set up N christmas lights in a row. The brightness of the i<sup>th</sup> light from the left is B[i]. A light at position i is powerful if its brightness is greater than or equal to the sum of brightness of all the lights to its left. Now, Tom wants the number of p...
Compilable
For this Question: Sara has developed a new algorithm to find sprime : For an integer n , To find all the sprime between 1 and n , she will start from the end n , mark it as sprime, and then mark all its factors (excluding itself) as not sprime. Then she will find the next greatest unmarked number less than the cu...
Compilable
For this Question: Sara has developed a new algorithm to find sprime : For an integer n , To find all the sprime between 1 and n , she will start from the end n , mark it as sprime, and then mark all its factors (excluding itself) as not sprime. Then she will find the next greatest unmarked number less than the cu...
Compilable
For this Question: <b> The only difference between the easy and the tricky version is the constraint on the number of queries Q. Solving the tricky version automatically solves the easy version.</b> You are given an array A of N integers. You will be given Q queries with two integers L and R. For each query, you ne...
Compilable
For this Question: <b> The only difference between the easy and the tricky version is the constraint on the number of queries Q. Solving the tricky version automatically solves the easy version.</b> You are given an array A of N integers. You will be given Q queries with two integers L and R. For each query, you ne...
Compilable
For this Question: <b> The only difference between the easy and the tricky version is the constraint on the number of queries Q. Solving the tricky version automatically solves the easy version.</b> You are given an array A of N integers. You will be given Q queries with two integers L and R. For each query, you ne...
Compilable
For this Question: Given an integer Q representing the number of queries and an integer K. There are two types of queries: (i) 1 x : Add the number x to the stream (ii) 2 : Print the sum of last K numbers of the stream. If there are less than K numbers in the stream, print the sum of current stream. Process all the ...
Compilable
For this Question: Given an integer Q representing the number of queries and an integer K. There are two types of queries: (i) 1 x : Add the number x to the stream (ii) 2 : Print the sum of last K numbers of the stream. If there are less than K numbers in the stream, print the sum of current stream. Process all the ...
Compilable
For this Question: You are given an array and Q queries. Your task is to perform these operations:- enqueue: this operation will add an element to your current queue. dequeue: this operation will delete the element from the starting of the queue displayfront: this operation will print the element presented at ...
Compilable
For this Question: Jenny was walking along the beach on a Sunday evening. She started from a point 0 and wants to reach a point N. What is the probability that she reaches exactly on point N, if she can only take 2 steps or 3 steps? Probability for step length 2 is P and probability for step length 3 is 1 – P.The first...
Compilable
For this Question: Jenny was walking along the beach on a Sunday evening. She started from a point 0 and wants to reach a point N. What is the probability that she reaches exactly on point N, if she can only take 2 steps or 3 steps? Probability for step length 2 is P and probability for step length 3 is 1 – P.The first...
Compilable
For this Question: Given an array, A of N integers. Find the product of maximum values for every subarray of size K. Print the answer modulo 10<sup>9</sup>+7. A subarray is any contiguous sequence of elements in an array.The first line contains two integers N and K, denoting the size of the array and the size of the s...
Compilable
For this Question: Given an array, A of N integers. Find the product of maximum values for every subarray of size K. Print the answer modulo 10<sup>9</sup>+7. A subarray is any contiguous sequence of elements in an array.The first line contains two integers N and K, denoting the size of the array and the size of the s...
Compilable
For this Question: Given an array, A of N integers. Find the product of maximum values for every subarray of size K. Print the answer modulo 10<sup>9</sup>+7. A subarray is any contiguous sequence of elements in an array.The first line contains two integers N and K, denoting the size of the array and the size of the s...
Compilable
For this Question: We are given a string. Your task is to compress the consecutive letters of the string For example, given string is "AAACCCBBD", thus here A's occurrence 3 times C's occurrence 3 times B's occurrence 2 times D's occurrence 1 time So after compressing string becomes "A3C3B2D1".The first line o...
Compilable
For this Question: We are given a string. Your task is to compress the consecutive letters of the string For example, given string is "AAACCCBBD", thus here A's occurrence 3 times C's occurrence 3 times B's occurrence 2 times D's occurrence 1 time So after compressing string becomes "A3C3B2D1".The first line o...
Compilable
For this Question: We are given a string. Your task is to compress the consecutive letters of the string For example, given string is "AAACCCBBD", thus here A's occurrence 3 times C's occurrence 3 times B's occurrence 2 times D's occurrence 1 time So after compressing string becomes "A3C3B2D1".The first line o...
Compilable
For this Question: Given two sorted linked list of size s1 and s2(sizes may or may not be same), your task is to merge them such that resultant list is also sorted.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete the function <b>Merge()</b> that takes t...
Compilable
For this Question: You will be given a number N that represents where the minute hand currently is on a clock. Your program should return the angle that is formed by the minute hand and the 12 o'clock mark on the clock.Number between 1 to 60 inclusivePrint the angle as a numberSample input 1:- 1 Sample output 1:- ...
Compilable
For this Question: You will be given a number N that represents where the minute hand currently is on a clock. Your program should return the angle that is formed by the minute hand and the 12 o'clock mark on the clock.Number between 1 to 60 inclusivePrint the angle as a numberSample input 1:- 1 Sample output 1:- ...
Compilable
For this Question: You will be given a number N that represents where the minute hand currently is on a clock. Your program should return the angle that is formed by the minute hand and the 12 o'clock mark on the clock.Number between 1 to 60 inclusivePrint the angle as a numberSample input 1:- 1 Sample output 1:- ...
Compilable
For this Question: Given a number N and a number P, your task is to calculate N<sup>P</sup>. Since the ans can be very long calculate your ans as N<sup>P</sup>%M where M = 10<sup>9</sup>+7Input contains only two integers N and P separated by spaces. Constraints:- 1 < = N, P <= 1000000000Print N<sup>P</sup>%M.Sampl...
Compilable
For this Question: Given a number N and a number P, your task is to calculate N<sup>P</sup>. Since the ans can be very long calculate your ans as N<sup>P</sup>%M where M = 10<sup>9</sup>+7Input contains only two integers N and P separated by spaces. Constraints:- 1 < = N, P <= 1000000000Print N<sup>P</sup>%M.Sampl...
Compilable
For this Question: Given a number N and a number P, your task is to calculate N<sup>P</sup>. Since the ans can be very long calculate your ans as N<sup>P</sup>%M where M = 10<sup>9</sup>+7Input contains only two integers N and P separated by spaces. Constraints:- 1 < = N, P <= 1000000000Print N<sup>P</sup>%M.Sampl...
Compilable
For this Question: You are given a cubic dice with 6 faces. All the individual faces have numbers printed on them. The numbers are in the range of 1 to 6, like any <b>ordinary dice</b>. You will be provided with a face of this cube, your task is to find the number on the opposite face of the cube. <b>Note</b>:- The ...
Compilable
For this Question: You are given a cubic dice with 6 faces. All the individual faces have numbers printed on them. The numbers are in the range of 1 to 6, like any <b>ordinary dice</b>. You will be provided with a face of this cube, your task is to find the number on the opposite face of the cube. <b>Note</b>:- The ...
Compilable
For this Question: You are given a cubic dice with 6 faces. All the individual faces have numbers printed on them. The numbers are in the range of 1 to 6, like any <b>ordinary dice</b>. You will be provided with a face of this cube, your task is to find the number on the opposite face of the cube. <b>Note</b>:- The ...
Compilable
For this Question: You are given a cubic dice with 6 faces. All the individual faces have numbers printed on them. The numbers are in the range of 1 to 6, like any <b>ordinary dice</b>. You will be provided with a face of this cube, your task is to find the number on the opposite face of the cube. <b>Note</b>:- The ...
Compilable
For this Question: Given a binary tree containing with N nodes and an integer X. Your task is to complete the function countSubtreesWithSumX() that returns the count of the number of subtress having total node’s data sum equal to a value X. Example: A tree given below<b>User Task:</b> Since this will be a functional...
Compilable
For this Question: Given a one-dimensional sorted array A containing N integers. You are also given an integer target, find if there exists a pair of elements in the array whose difference is equal to the target. Approach this problem in O(n).The first line contains a single integer N. The second line contains N s...
Compilable
For this Question: Given a one-dimensional sorted array A containing N integers. You are also given an integer target, find if there exists a pair of elements in the array whose difference is equal to the target. Approach this problem in O(n).The first line contains a single integer N. The second line contains N s...
Compilable