C1 Min Read LetuscrackonOctober 24, 2025 Position Digits Sum The program must accept two positive integers as the input and then print the sum of their unit digits, tenth digits and so on. Input Format:…
Python1 Min Read LetuscrackonOctober 13, 2025 Words to Digits – Integers Sum The program must accept N integers as the input, but certain digits in some integers are denoted in words (in lower case). The…
Python1 Min Read LetuscrackonOctober 11, 2025 Series using Sum of Digits The program must accept two integers N and K as the input. The program must generate a series of integers based on the…
Python1 Min Read LetuscrackonOctober 4, 2025 Numbers – First and Last Digits Same N numbers A(1) to A(N) are passed as input. The program must print only the X numbers which have same first and last digit. Input Format:The…
Python1 Min Read LetuscrackonSeptember 27, 2025 Smallest number by rearranging digits of a given number Find the Smallest number (Not leading Zeros) which can be obtained by rearranging the digits of given number. Input: 846903 Output: 304689…
Python1 Min Read LetuscrackonSeptember 16, 2025 Prime Numbers – N Digits The program must accept N distinct digits as the input. The program must print all possible prime numbers…
Python1 Min Read LetuscrackonSeptember 8, 2025 Toggle – Digits and Words The program must accept a string S which contains digits as integer values and words. The program must toggle the digits to words and words to…
C1 Min Read LetuscrackonSeptember 1, 2025 Print Digits – X and Y The program must accept two integers X and Y as the input. The program must print all the digits from the unit digit of X…
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 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…