Python1 Min Read LetuscrackonApril 2, 2026 All Digits – Pairs Count The program must accept N integers as the input. The program must print the number of pairs X where the concatenation of…
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…
Python1 Min Read LetuscrackonMarch 11, 2026 Largest & Smallest Digits Difference A number N is passed as the input. The program must print the difference between the largest and the smallest digits in the number. Input…
Python1 Min Read LetuscrackonMarch 7, 2026 Difference between sum of odd and even digits A number N is passed as input. The program must find the difference between sum of odd and even digits in the number and print the difference.…
Python1 Min Read LetuscrackonFebruary 23, 2026 Remove First K Even Digits The program must accept N integers and an integer K as the input. The program must remove the first K even digits among the digits of N…
C2 Min Read LetuscrackonFebruary 6, 2026 Adjacent Even Digits The program must accept an integer N as the input. The program must print the digits surrounded by even digits on both sides. The first and…
C1 Min Read LetuscrackonJanuary 16, 2026 Double the Digits in Number Given a positive integer N, the program must print double the value for each of it’s digits. Boundary Condition(s): 1 <= N…
C1 Min Read LetuscrackonJanuary 3, 2026 Product – Swap Unit Digits The program must accept two integers X and Y as the input. The program must print the product of X and Y after swapping their unit digits as…
Java1 Min Read LetuscrackonJanuary 2, 2026 First and Last Odd Digits Given N positive integers, the program must print the integers if the first and last digits are odd digits. Boundary Condition(s):1 <= 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…