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…
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…
C Python1 Min Read LetuscrackonAugust 7, 2025 Integer – Exactly Three Digits The program must accept an integer N as the input. The program must print yes if exactly three digits are used to form the integer N. Else the…
Python1 Min Read LetuscrackonJuly 24, 2025 Rotate Digits – 180 Degrees The program must accept an integer N as the input. The program must form an integer X by rotating the each digit 180…
Python1 Min Read LetuscrackonJuly 13, 2025 First Two and Last Two Digits The program must accept an integer N as the input. The program must print the absolute difference between the first two and last two…
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…
Python3 Min Read LetuscrackonJune 5, 2025 Sort Digits in Submatrices Sort Digits in Submatrices: The program must accept an integer matrix of size R*C as the input. The matrix contains only digits…
C Java Kickstart Python1 Min Read LetuscrackonMay 18, 2025 Print Last Four Digits The program must accept an integer N as the input. The program must print the last four digits in N as the output. Example…
Python1 Min Read LetuscrackonApril 22, 2025 Maximum Sum – Equal Digits Sum Maximum Sum – Equal Digits Sum: The program must accept N integers as the input. The program must print the maximum sum of two…