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.…
Python1 Min Read LetuscrackonAugust 3, 2025 Increment/Decrement – Find Sum The program must accept N string values representing N integers as the input. Each integer may or may not have…
Python1 Min Read LetuscrackonJuly 31, 2025 Sum – Remove Last Occurring Zero The program must accept N integers as the input. For each integer X among the N integers, the program must remove the last…
Python1 Min Read LetuscrackonJuly 15, 2025 Sum – Integers having at least one D The program must accept N integers and a digit D as the input. The program must print the sum S of integers…
Python1 Min Read LetuscrackonJuly 11, 2025 Sum of Digits – Largest Integer The program must accept N integers as the input. The program must print the sum of the digits of the largest integer among the N…
Python2 Min Read LetuscrackonJuly 9, 2025 Update & Sum Queries – IntegerList Update & Sum Queries – IntegerList: The program must accept a list of integers and Q queries as the input. For…
Python2 Min Read LetuscrackonJune 24, 2025 Alphabet Matrix – Minimum Sum Path Alphabet Matrix – Minimum Sum Path: The program must accept a matrix of size R*C containing only alphabets as the input. Each…