Python1 Min Read LetuscrackonOctober 8, 2025 Array Maximum Sum Divisible By N n array of numbers separated by space will be passed as input. A number N is also passed as input. The program has to print the maximum sum of…
Python1 Min Read LetuscrackonOctober 1, 2025 Find the digital sum A number N is passed as an input to the program. The program must print the digital sum of the number. Note: The digital sum of a number is…
C Java Python1 Min Read LetuscrackonSeptember 30, 2025 Fibonacci Sum – N Integers The program must accept N integers as the input. The program must find the integers which are present in the Fibonacci series. Then the…
C1 Min Read LetuscrackonSeptember 13, 2025 Sum of Unique Elements in the Array The program must accept a positive integer array of size N as the input. The programmust print the sum of unique elements in the array as the…
Python1 Min Read LetuscrackonSeptember 10, 2025 Split Integer – Range Sum The program must accept an integer N as the input. The program must print YES if it is possible to split the integer N…
C Java Python1 Min Read LetuscrackonAugust 30, 2025 Alphabets and Sum of Digits The program must accept a string S containing only alphabets and digits as the input. The program must print the alphabets and then the sum of…
C Python1 Min Read LetuscrackonAugust 17, 2025 Sum of Factorial of Digits The program must accept an integer N as the input. The program must print the sum of factorial of the digits in N as the output. Boundary…
C Python1 Min Read LetuscrackonAugust 12, 2025 Sum & Product of Digits in N The program must accept an integer N as the input. The program must find the sum of digits S and the product of digits P in N. Then the…
C1 Min Read LetuscrackonAugust 12, 2025 Sum of Two Integers Equal to K The program must accept N integers and an integer K as the input. The program must print yes if the sum of any two integers among the N…
C Java Python2 Min Read LetuscrackonAugust 8, 2025 Sum of ASCII Values The program must accept a string S as the input. The program must print the sum of the ASCII values of all the characters in the string S.…