Python1 Min Read LetuscrackonApril 29, 2026 Sum of Prime Numbers Given an integer matrix of size M*N as input, the program must print the sum of prime numbers present in the given matrix. Boundary…
C4 Min Read LetuscrackonApril 25, 2026 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 LetuscrackonApril 23, 2026 String – Vowels Position Sum Accept a String S as the input. The program must print the sum of the positions of the vowels in S. If the string does not contain…
Python1 Min Read LetuscrackonApril 15, 2026 Float Sum – Concatenation The program must accept N integers (where N is always even) as the input. The program must form N/2 float values by…
Python1 Min Read LetuscrackonApril 12, 2026 Divisible Sum Pair Count N numbers (A0, A1, A2, …, AN-1) are passed as input to the program. A positive integer D is also passed as input to the program.The…
C2 Min Read LetuscrackonMarch 27, 2026 Max Equal Sum of Cube Numbers in N Stacks There are several cubes placed in N stacks. Each cube has a number K (where K is from 1 to 99) printed on all the sides. Each of these N…
Python1 Min Read LetuscrackonMarch 25, 2026 Sum of Last X Digits Given two integers N and X as input, the program must print the sum of last X digits in the given integer N. Boundary Condition(s):1 <= N…
C2 Min Read LetuscrackonMarch 20, 2026 Maximum Sum in Array – M out of N Given N positive integers, find the maximum sum S that can be obtained by adding exactly M out of the N integers. The program must print the…
Python1 Min Read LetuscrackonMarch 19, 2026 Sum divisible by D Two numbers A and B are passed as input. The program must print yes if the sum of these two numbers A and B is divisible by a third number D.…
Python1 Min Read LetuscrackonMarch 12, 2026 Diagonal Sum A set of numbers forming a matrix N*N is passed as input. The program has to print the sum of numbers along the diagonals. Input Format: The…