C4 Min Read LetuscrackonJune 11, 2024 N Integers – Sum S – All Combinations A number S is passed as input. Also N positive unique integers are passed as input to the program. One or more numbers (out of these N…
Python1 Min Read LetuscrackonJune 11, 2024 Product of Three Integers Given three integers A, B and C as input, the program must print the product of the three integers. Boundary Condition(s):0 <= A, B, C…
Python1 Min Read LetuscrackonJune 10, 2024 Reverse Even Integers The program must accept N integers as the input. The program must print all the even integers among the N integers in reverse order…
C Java Python2 Min Read LetuscrackonJune 10, 2024 Integer – Count of Even Integers The program must accept an integer N as the input. The program must print the number of even integers that can be formed from the…
C1 Min Read LetuscrackonJune 10, 2024 C – Stack – Reverse Integers An array of N integers is given as input. The program must reverse the integers using a stack. Fill in the missing lines of code to implement…
C Java Python2 Min Read LetuscrackonJune 10, 2024 Swap Even Integers Pair The program must accept N integers as the input. The program swap every two even integers among the N integers. Then the program…
C1 Min Read LetuscrackonJune 10, 2024 Count Embedded Integers in String A string is passed as input. The program must print the count of integers present in the string. Boundary Condition(s):1 <= Length of…
C Java Python1 Min Read LetuscrackonJune 10, 2024 Replace Max Digit – Two Integers The program must accept two integers X and Y as the input. The program must replace all the occurrences of the maximum digit in X with the…
C Java Python2 Min Read LetuscrackonJune 9, 2024 Split & Check Prime Integers The program must accept an integer N as the input. The program must split the integer N into two parts and print them if both are prime…
C Java Python2 Min Read LetuscrackonJune 8, 2024 Integers Sum – Split, Sort and Merge The program must accept N integers as the input, where each integer contains a pipe symbol. The program must find the sum of the…