C1 Min Read LetuscrackonDecember 25, 2025 Smallest Possible Odd Integer The program must accept an integer N as the input. The program must print the smallest possible odd integer using all the digits in N as the…
Java1 Min Read LetuscrackonDecember 20, 2025 Subtract Largest Integer The program must accept N positive integers as the input. The program must subtract the integers from the largest integer among the N integers…
C1 Min Read LetuscrackonDecember 16, 2025 Largest Possible Odd Integer The program must accept an integer N as the input. The program must print the largest possible odd integer using all the digits in N…
C1 Min Read LetuscrackonNovember 19, 2025 Integer – Sum of Digits The program must accept an integer value N as a command line argument and print the sum of the digits in N.Example Input/Output…
C Python2 Min Read LetuscrackonSeptember 12, 2025 Smallest Palindromic Integer – Greater than X The program must accept N unique digits and an integer X as the input. The program must print the smallest palindromic integer, which is…
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…
Python1 Min Read LetuscrackonSeptember 9, 2025 Integer – Place Values The program must accept an integer N as the input. The program must print each place value in the integer N as the output. Boundary…
C Python1 Min Read LetuscrackonSeptember 3, 2025 Integer Triangle – Pattern The program must accept an integer N as the input. The program must print the desired pattern as shown in the Example Input/Output…
C Python1 Min Read LetuscrackonAugust 17, 2025 Integer with Two Digits The program must accept an integer N as the input. The program must print YES if the integer N is formed using exactly two digits. Else the…
Python1 Min Read LetuscrackonAugust 11, 2025 Integer – Count of Pairs The program must an integer N as the input. The program must print the count C of pairs of positive integers X and Y so that the sum of X and…