Instruction
stringlengths
261
35k
Response
stringclasses
1 value
For this Question: Given a circular linked list consisting of N nodes and an integer K, your task is to add the integer K at the end of the list. <b>Note: Sample Input and Output just show how a linked list will look depending on the questions. Do not copy-paste as it is in custom input</b><b>User Task:</b> Sinc...
Compilable
For this Question: There is a rule in ludo that a token can only be unlocked when either a 1 or 6 shown in the die. Given the die number N, Your task is to check whether the token can be unlocked or not.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete t...
Compilable
For this Question: There is a rule in ludo that a token can only be unlocked when either a 1 or 6 shown in the die. Given the die number N, Your task is to check whether the token can be unlocked or not.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete t...
Compilable
For this Question: There is a rule in ludo that a token can only be unlocked when either a 1 or 6 shown in the die. Given the die number N, Your task is to check whether the token can be unlocked or not.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete t...
Compilable
For this Question: There is a rule in ludo that a token can only be unlocked when either a 1 or 6 shown in the die. Given the die number N, Your task is to check whether the token can be unlocked or not.<b>User Task:</b> Since this will be a functional problem, you don't have to take input. You just have to complete t...
Compilable
For this Question: You are given resistance value of N resistors. Find the net resistance of the system when all of these N resistors are connected in parallel. If there are three resistors A1, A2, A3, when they are connected in parallel, the net resistance will be 1/((1/A1) + (1/A2) + (1/A3)) Since this number c...
Compilable
For this Question: You are given resistance value of N resistors. Find the net resistance of the system when all of these N resistors are connected in parallel. If there are three resistors A1, A2, A3, when they are connected in parallel, the net resistance will be 1/((1/A1) + (1/A2) + (1/A3)) Since this number c...
Compilable
For this Question: You are given resistance value of N resistors. Find the net resistance of the system when all of these N resistors are connected in parallel. If there are three resistors A1, A2, A3, when they are connected in parallel, the net resistance will be 1/((1/A1) + (1/A2) + (1/A3)) Since this number c...
Compilable
For this Question: Write a program to check whether character is an alphabet or not using conditional operator.The first line of the input contains a character ch. <b>Constraints</b> 'a', 'A' <= ch <= 'z', 'Z'Print "YES" if it's alphabet otherwise "NO".Sample Input : a Sample Output YES, I have written this So...
Compilable
For this Question: Write a program to check whether character is an alphabet or not using conditional operator.The first line of the input contains a character ch. <b>Constraints</b> 'a', 'A' <= ch <= 'z', 'Z'Print "YES" if it's alphabet otherwise "NO".Sample Input : a Sample Output YES, I have written this So...
Compilable
For this Question: Write a program to check whether character is an alphabet or not using conditional operator.The first line of the input contains a character ch. <b>Constraints</b> 'a', 'A' <= ch <= 'z', 'Z'Print "YES" if it's alphabet otherwise "NO".Sample Input : a Sample Output YES, I have written this So...
Compilable
For this Question: Given an array A[] and a range [a, b]. The task is to partition the array around the range such that array is divided into three parts. 1) All elements smaller than a come first. 2) All elements in range a to b come next. 3) All elements greater than b appear in the end. The individual elements o...
Compilable
For this Question: Given an array A[] and a range [a, b]. The task is to partition the array around the range such that array is divided into three parts. 1) All elements smaller than a come first. 2) All elements in range a to b come next. 3) All elements greater than b appear in the end. The individual elements o...
Compilable
For this Question: Given a string, the task is to remove duplicates from it. Expected time complexity O(n) where n is length of the input string and extra space O(1) under the assumption that there are total of 256 possible characters in a string. Note: that original order of characters must be kept same.The first l...
Compilable
For this Question: Given a string, the task is to remove duplicates from it. Expected time complexity O(n) where n is length of the input string and extra space O(1) under the assumption that there are total of 256 possible characters in a string. Note: that original order of characters must be kept same.The first l...
Compilable
For this Question: Given a string, the task is to remove duplicates from it. Expected time complexity O(n) where n is length of the input string and extra space O(1) under the assumption that there are total of 256 possible characters in a string. Note: that original order of characters must be kept same.The first l...
Compilable
For this Question: Given a group of A + B people, with A Indians and B Americans. Find number of ways to select a non-empty subset of these people, such that the subset has equal number of Indian and American people.Input contains two space separated integers A and B. Constraints: 1 <= A, B <= 1000000Print the num...
Compilable
For this Question: Given a group of A + B people, with A Indians and B Americans. Find number of ways to select a non-empty subset of these people, such that the subset has equal number of Indian and American people.Input contains two space separated integers A and B. Constraints: 1 <= A, B <= 1000000Print the num...
Compilable
For this Question: A group of contest writers have written n problems and want to use k of them in an upcoming contest. Each problem has a difficulty level. A contest is valid if all of its k problems have different difficulty levels. Compute how many distinct valid contests the contest writers can produce. Two cont...
Compilable
For this Question: A group of contest writers have written n problems and want to use k of them in an upcoming contest. Each problem has a difficulty level. A contest is valid if all of its k problems have different difficulty levels. Compute how many distinct valid contests the contest writers can produce. Two cont...
Compilable
For this Question: A group of contest writers have written n problems and want to use k of them in an upcoming contest. Each problem has a difficulty level. A contest is valid if all of its k problems have different difficulty levels. Compute how many distinct valid contests the contest writers can produce. Two cont...
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: Given a string S you have to remove all pairs of identical letters, which are consecutive. If after the removal there appear new pairs, remove them as well. Repeat this untill no adjacent letter in the string is same. Note that deleting of the consecutive identical letters can be done in any order, ...
Compilable
For this Question: Given a string S you have to remove all pairs of identical letters, which are consecutive. If after the removal there appear new pairs, remove them as well. Repeat this untill no adjacent letter in the string is same. Note that deleting of the consecutive identical letters can be done in any order, ...
Compilable
For this Question: Given a string S you have to remove all pairs of identical letters, which are consecutive. If after the removal there appear new pairs, remove them as well. Repeat this untill no adjacent letter in the string is same. Note that deleting of the consecutive identical letters can be done in any order, ...
Compilable
For this Question: You are given a 2X2 square matrix. You need to find the determinant of the matrix.The input contains two-line, each line contain two integers separated by spaces. Each element of the matrix is from 1 to 100.Output a single integer, the determinant of the matrix.Sample Input 4 5 2 3 Sample Out...
Compilable
For this Question: You are given a 2X2 square matrix. You need to find the determinant of the matrix.The input contains two-line, each line contain two integers separated by spaces. Each element of the matrix is from 1 to 100.Output a single integer, the determinant of the matrix.Sample Input 4 5 2 3 Sample Out...
Compilable
For this Question: You are given a 2X2 square matrix. You need to find the determinant of the matrix.The input contains two-line, each line contain two integers separated by spaces. Each element of the matrix is from 1 to 100.Output a single integer, the determinant of the matrix.Sample Input 4 5 2 3 Sample Out...
Compilable
For this Question: Given a matrix of size N*N, your task is to find the sum of the primary and secondary diagonal of the matrix. For Matrix:- M<sub>00</sub> M<sub>01</sub> M<sub>02</sub> M<sub>10</sub> M<sub>11</sub> M<sub>12</sub> M<sub>20</sub> M<sub>21</sub> M<sub>22</sub> Primary diagonal:- M<sub>00</sub> ...
Compilable
For this Question: Given a matrix of size N*N, your task is to find the sum of the primary and secondary diagonal of the matrix. For Matrix:- M<sub>00</sub> M<sub>01</sub> M<sub>02</sub> M<sub>10</sub> M<sub>11</sub> M<sub>12</sub> M<sub>20</sub> M<sub>21</sub> M<sub>22</sub> Primary diagonal:- M<sub>00</sub> ...
Compilable
For this Question: Given a matrix of size N*N, your task is to find the sum of the primary and secondary diagonal of the matrix. For Matrix:- M<sub>00</sub> M<sub>01</sub> M<sub>02</sub> M<sub>10</sub> M<sub>11</sub> M<sub>12</sub> M<sub>20</sub> M<sub>21</sub> M<sub>22</sub> Primary diagonal:- M<sub>00</sub> ...
Compilable
For this Question: Given a matrix of size N*N, your task is to find the sum of the primary and secondary diagonal of the matrix. For Matrix:- M<sub>00</sub> M<sub>01</sub> M<sub>02</sub> M<sub>10</sub> M<sub>11</sub> M<sub>12</sub> M<sub>20</sub> M<sub>21</sub> M<sub>22</sub> Primary diagonal:- M<sub>00</sub> ...
Compilable
For this Question: For a number N we have N! unique permutations. <b>A permutation is a sequence of integers from 1 to N of length N containing each number exactly once.</b> For a positive integer X, <b>X! = 1 * 2 * 3 *...* X-1 * X</b> Your task is to find the Kth smallest permutation when all possible permutations o...
Compilable
For this Question: For a number N we have N! unique permutations. <b>A permutation is a sequence of integers from 1 to N of length N containing each number exactly once.</b> For a positive integer X, <b>X! = 1 * 2 * 3 *...* X-1 * X</b> Your task is to find the Kth smallest permutation when all possible permutations o...
Compilable
For this Question: Given an array arr[] of N integers arranged in a circular fashion. Your task is to find the maximum contiguous subarray sum containing at least 1 element.The first line of input contains a single integer T which denotes the number of test cases. The first line of each test case contains a single inte...
Compilable
For this Question: Given an array arr[] of N integers arranged in a circular fashion. Your task is to find the maximum contiguous subarray sum containing at least 1 element.The first line of input contains a single integer T which denotes the number of test cases. The first line of each test case contains a single inte...
Compilable
For this Question: Given an array arr[] of N integers arranged in a circular fashion. Your task is to find the maximum contiguous subarray sum containing at least 1 element.The first line of input contains a single integer T which denotes the number of test cases. The first line of each test case contains a single inte...
Compilable
For this Question: A polygon is a closed figure with 3 or more sides. Say, we have a class called Polygon. This class has data attributes to store the number of sides n and magnitude of each side as a list called sides. The inputSides() method takes in the magnitude of each side The dispSides() method displays the...
Compilable
For this Question: Given an array of N integers, give the number with maximum frequency. If multiple numbers have maximum frequency print the maximum number among them.The first line of the input contains an integer N, and the Second line contains N space-separated integers of the array. <b>Constraints:</b> 3 <= N ...
Compilable
For this Question: Given an array of N integers, give the number with maximum frequency. If multiple numbers have maximum frequency print the maximum number among them.The first line of the input contains an integer N, and the Second line contains N space-separated integers of the array. <b>Constraints:</b> 3 <= N ...
Compilable
For this Question: Given an array of N integers, give the number with maximum frequency. If multiple numbers have maximum frequency print the maximum number among them.The first line of the input contains an integer N, and the Second line contains N space-separated integers of the array. <b>Constraints:</b> 3 <= N ...
Compilable
For this Question: Given a positive integer N. You need to print the sum of the first N natural numbers.The first line of input contains a single integer T, the next T lines contains a single integer N. Constraints: 1 < = T < = 100 1 < = N < = 100Print the sum of first N natural numbers for each test case in a new...
Compilable
For this Question: Given a positive integer N. You need to print the sum of the first N natural numbers.The first line of input contains a single integer T, the next T lines contains a single integer N. Constraints: 1 < = T < = 100 1 < = N < = 100Print the sum of first N natural numbers for each test case in a new...
Compilable
For this Question: Given a positive integer N. You need to print the sum of the first N natural numbers.The first line of input contains a single integer T, the next T lines contains a single integer N. Constraints: 1 < = T < = 100 1 < = N < = 100Print the sum of first N natural numbers for each test case in a new...
Compilable
For this Question: Given a binary square matrix of size N*N and an integer K, your task is to print the maximum side of sub square matrix containing at most K 1's.The first line of input contains two integers N and K, Next N lines contain N space-separated integers depicting the values of the matrix. <b>Constraints:...
Compilable
For this Question: Given a binary square matrix of size N*N and an integer K, your task is to print the maximum side of sub square matrix containing at most K 1's.The first line of input contains two integers N and K, Next N lines contain N space-separated integers depicting the values of the matrix. <b>Constraints:...
Compilable
For this Question: Given the first 2 terms A and B of an Arithmetic Series, tell the Nth term of the series.<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>nthAP()</b> that takes the integer A, B, and N as a parameter. <b>Constraints...
Compilable
For this Question: You are given an integer A and a floating point number B, upto exactly two decimal places. Compute their product, truncate its fractional part, and print the result as an integer.Since this will be a functional problem, you don't have to take input. You just have to complete the function solve() that...
Compilable
For this Question: Write a program to check whether a number is even or odd using switch case.First Line of the input contains the number n. <b>Constraints</b> 1 <= n <= 1e9If the number is even print "Even" otherwise "Odd"Sample Input : 23 Sample Output : Odd Sample Input : 24 Sample Output : Even,...
Compilable
For this Question: Write a program to check whether a number is even or odd using switch case.First Line of the input contains the number n. <b>Constraints</b> 1 <= n <= 1e9If the number is even print "Even" otherwise "Odd"Sample Input : 23 Sample Output : Odd Sample Input : 24 Sample Output : Even,...
Compilable
For this Question: Write a program to check whether a number is even or odd using switch case.First Line of the input contains the number n. <b>Constraints</b> 1 <= n <= 1e9If the number is even print "Even" otherwise "Odd"Sample Input : 23 Sample Output : Odd Sample Input : 24 Sample Output : Even,...
Compilable
For this Question: Given a singly linked list and an element K, your task is to insert the element at the tail of the linked list.<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>addElement()</b> that takes head node and the integer K as...
Compilable
For this Question: Given a singly linked list and an element K, your task is to insert the element at the tail of the linked list.<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>addElement()</b> that takes head node and the integer K as...
Compilable
For this Question: You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed. All houses at this place are arranged in a circle. That means the first house is the neighbor of the last one. Meanwhile, adjacent houses have a security system connected, and it wil...
Compilable
For this Question: Ready for a super simple challenge! You are given two integers A and B. You will create a line of boys and girls in the following manner: First A girls, then B boys, then A girls, then B boys, and so on. You will also be given an integer N. Find the number of girls in the first N people of the row...
Compilable
For this Question: Ready for a super simple challenge! You are given two integers A and B. You will create a line of boys and girls in the following manner: First A girls, then B boys, then A girls, then B boys, and so on. You will also be given an integer N. Find the number of girls in the first N people of the row...
Compilable
For this Question: Ready for a super simple challenge! You are given two integers A and B. You will create a line of boys and girls in the following manner: First A girls, then B boys, then A girls, then B boys, and so on. You will also be given an integer N. Find the number of girls in the first N people of the row...
Compilable
For this Question: You are given an array Arr of N integers. A subarray is good if the sum of elements of that subarray is greater than or equal to K. Print the length of good subarray of minimum length.First line of input contains N and K. Second line of input contains N integers representing the elements of the arra...
Compilable
For this Question: You are given an array Arr of N integers. A subarray is good if the sum of elements of that subarray is greater than or equal to K. Print the length of good subarray of minimum length.First line of input contains N and K. Second line of input contains N integers representing the elements of the arra...
Compilable
For this Question: You are given an array Arr of N integers. A subarray is good if the sum of elements of that subarray is greater than or equal to K. Print the length of good subarray of minimum length.First line of input contains N and K. Second line of input contains N integers representing the elements of the arra...
Compilable
For this Question: Write a program to print a butterfly pattern of row size 2n, where the value of n is given by the user.Integer n represents half the row size of the pattern <b>User Task:</b> Since this is a functional problem you don't have to worry about taking input, you just have to complete the function <b>bu...
Compilable
For this Question: Given the first 2 terms A and B of an Arithmetic Series, tell the Nth term of the series.<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>NthAP()</b> that takes the integer A, B, and N as a parameter. <b>Constraints...
Compilable
For this Question: Sara is trying a new type of game in which she can jump in either the left direction or in the right direction. Also after each jump the range of her jump increases by 1 unit. i.e if starts from 1 in the next jump she has to jump 2 units then 3 units and so on. Given the number of jumps as N, the ra...
Compilable
For this Question: Sara is trying a new type of game in which she can jump in either the left direction or in the right direction. Also after each jump the range of her jump increases by 1 unit. i.e if starts from 1 in the next jump she has to jump 2 units then 3 units and so on. Given the number of jumps as N, the ra...
Compilable
For this Question: Sara is trying a new type of game in which she can jump in either the left direction or in the right direction. Also after each jump the range of her jump increases by 1 unit. i.e if starts from 1 in the next jump she has to jump 2 units then 3 units and so on. Given the number of jumps as N, the ra...
Compilable
For this Question: Sara is trying a new type of game in which she can jump in either the left direction or in the right direction. Also after each jump the range of her jump increases by 1 unit. i.e if starts from 1 in the next jump she has to jump 2 units then 3 units and so on. Given the number of jumps as N, the ra...
Compilable
For this Question: Jane's football team has earned A points so far in her school's sports fest. To qualify for the semi-finals they have to earn at least B points. They have X more games left. For each game, they will earn 2 points for a win and 1 point for a draw and they don't earn any points if they lose. Can Jane's...
Compilable
For this Question: Jane's football team has earned A points so far in her school's sports fest. To qualify for the semi-finals they have to earn at least B points. They have X more games left. For each game, they will earn 2 points for a win and 1 point for a draw and they don't earn any points if they lose. Can Jane's...
Compilable
For this Question: Given two integers x and y, check if x can be converted to y by adding F(n) to x where F(n){n>=1} is defined as:- 1+3+9+27+81+. .3^n.<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>Ifpossible()</b> that takes the inte...
Compilable
For this Question: Given two integers x and y, check if x can be converted to y by adding F(n) to x where F(n){n>=1} is defined as:- 1+3+9+27+81+. .3^n.<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>Ifpossible()</b> that takes the inte...
Compilable
For this Question: Given two integers x and y, check if x can be converted to y by adding F(n) to x where F(n){n>=1} is defined as:- 1+3+9+27+81+. .3^n.<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>Ifpossible()</b> that takes the inte...
Compilable
For this Question: Given two integers x and y, check if x can be converted to y by adding F(n) to x where F(n){n>=1} is defined as:- 1+3+9+27+81+. .3^n.<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>Ifpossible()</b> that takes the inte...
Compilable
For this Question: Remove duplicates of an array and return an array of only unique elements.An array containing numbers.Space separated unique elements from the array.Sample Input:- 1 2 3 5 1 5 9 1 2 8 Sample Output:- 1 2 3 5 9 8 <b>Explanation:-</b> Extra 1, 2, and 5 were removed since they were occurring mu...
Compilable
For this Question: Remove duplicates of an array and return an array of only unique elements.An array containing numbers.Space separated unique elements from the array.Sample Input:- 1 2 3 5 1 5 9 1 2 8 Sample Output:- 1 2 3 5 9 8 <b>Explanation:-</b> Extra 1, 2, and 5 were removed since they were occurring mu...
Compilable
For this Question: Find factorial of a given number N. <b>Note: </b> The Factorial of a number is the product of an integer and all the integers below it; e.g. factorial four ( 4! ) is equal to 24 (4*3*2*1).<b>User Task</b> Since this is a functional problem, you don't have to worry about the input. You just have ...
Compilable
For this Question: Find factorial of a given number N. <b>Note: </b> The Factorial of a number is the product of an integer and all the integers below it; e.g. factorial four ( 4! ) is equal to 24 (4*3*2*1).<b>User Task</b> Since this is a functional problem, you don't have to worry about the input. You just have ...
Compilable
For this Question: Find factorial of a given number N. <b>Note: </b> The Factorial of a number is the product of an integer and all the integers below it; e.g. factorial four ( 4! ) is equal to 24 (4*3*2*1).<b>User Task</b> Since this is a functional problem, you don't have to worry about the input. You just have ...
Compilable
For this Question: In this season of love, everyone wants to surprise each other. You are also super excited and you wish to buy roses of 3 different colors. You always buy roses in order, white, yellow, red. So if you buy 7 roses, they will be "white, yellow, red, white, yellow, red, white". You need to find the...
Compilable
For this Question: In this season of love, everyone wants to surprise each other. You are also super excited and you wish to buy roses of 3 different colors. You always buy roses in order, white, yellow, red. So if you buy 7 roses, they will be "white, yellow, red, white, yellow, red, white". You need to find the...
Compilable
For this Question: In this season of love, everyone wants to surprise each other. You are also super excited and you wish to buy roses of 3 different colors. You always buy roses in order, white, yellow, red. So if you buy 7 roses, they will be "white, yellow, red, white, yellow, red, white". You need to find the...
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: Abhas likes to play with numbers. He is given integers N and K. Find the number of triples (a, b, c) of positive integers not greater than N such that a+b, b+c, and c+a are all multiples of K. The order of a, b, and c does matter, and some of them can be the same.The input line contains N and K separ...
Compilable
For this Question: Given an integer K and an array height[] of size N, where height[i] denotes the height of the ith tree in a forest. The task is to make a cut of height X from the ground such that at max K units wood is collected. Find the minimum value of X <b>If you make a cut of height X from the ground then ever...
Compilable
For this Question: Given an integer K and an array height[] of size N, where height[i] denotes the height of the ith tree in a forest. The task is to make a cut of height X from the ground such that at max K units wood is collected. Find the minimum value of X <b>If you make a cut of height X from the ground then ever...
Compilable
For this Question: Given an integer K and an array height[] of size N, where height[i] denotes the height of the ith tree in a forest. The task is to make a cut of height X from the ground such that at max K units wood is collected. Find the minimum value of X <b>If you make a cut of height X from the ground then ever...
Compilable
For this Question: Given an array, Arr of N integers. Find the number of non- empty subarrays such that xor of all the elements of that subarray is divisible by 8.First line of input contains a single integer N. Second line of input contains N integers denoting the elements of Arr. Constraints: 1 <= N <= 100000 1...
Compilable
For this Question: Given an array, Arr of N integers. Find the number of non- empty subarrays such that xor of all the elements of that subarray is divisible by 8.First line of input contains a single integer N. Second line of input contains N integers denoting the elements of Arr. Constraints: 1 <= N <= 100000 1...
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
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: Given the first 2 terms A and B of an Arithmetic Series, tell the Nth term of the series.<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>NthAP()</b> that takes the integer A, B, and N as a parameter. <b>Constraints...
Compilable
For this Question: You think that integers divisible by K are nice. Given L and R (L<=R), find the number of nice integers from L to R (both inclusive).First Line of input contains three integers L R K Constraints : 0 <= L <= R <= 1000000000000000000(10^18) 1 <= K <= 1000000000000000000(10^18)Output a single int...
Compilable
For this Question: You think that integers divisible by K are nice. Given L and R (L<=R), find the number of nice integers from L to R (both inclusive).First Line of input contains three integers L R K Constraints : 0 <= L <= R <= 1000000000000000000(10^18) 1 <= K <= 1000000000000000000(10^18)Output a single int...
Compilable
For this Question: You think that integers divisible by K are nice. Given L and R (L<=R), find the number of nice integers from L to R (both inclusive).First Line of input contains three integers L R K Constraints : 0 <= L <= R <= 1000000000000000000(10^18) 1 <= K <= 1000000000000000000(10^18)Output a single int...
Compilable
For this Question: Negi is fascinated with the binary representation of the number. Tell him the number of set bits (ones) in the binary representation of an integer N.The first line of the input contains single integer N. Constraints 1 <= N <= 1000000000000The output should contain a single integer, the number of...
Compilable
For this Question: Negi is fascinated with the binary representation of the number. Tell him the number of set bits (ones) in the binary representation of an integer N.The first line of the input contains single integer N. Constraints 1 <= N <= 1000000000000The output should contain a single integer, the number of...
Compilable
For this Question: Negi is fascinated with the binary representation of the number. Tell him the number of set bits (ones) in the binary representation of an integer N.The first line of the input contains single integer N. Constraints 1 <= N <= 1000000000000The output should contain a single integer, the number of...
Compilable