Python1 Min Read LetuscrackonMarch 27, 2025 Unit Digit from 1 to 5 Unit Digit from 1 to 5: Given an integer N as input, the program must print YES if the unit digit is from 1 to 5. Else the program…
Python1 Min Read LetuscrackonMarch 26, 2025 Largest of Tenth Digit and Unit Digit Largest of Tenth Digit and Unit Digit: Given an integer N as input, the program must print the largest of the tenth digit and the unit…
Python1 Min Read LetuscrackonMarch 19, 2025 Inplace Sort – Unit Digit Inplace Sort – Unit Digit: The program must accept N integers as the input. The program must sort the integers having the same unit…
Python1 Min Read LetuscrackonMarch 16, 2025 Multiply Multiples with Unit Digit Program In Python Multiply Multiples with Unit Digit: Two numbers X and Y are passed as the input where Y > X. Another number N is also passed as the input…
Python1 Min Read LetuscrackonMarch 14, 2025 Unit Digit Double Unit Digit Double: Given an array of integers of size N, the program must print the twice the value of the unit digit of each element.…
Python1 Min Read LetuscrackonJanuary 24, 2025 Largest & Smallest Unit Digit Numbers Difference Largest & Smallest Unit Digit Numbers Difference: Given N numbers, the program must find and print the difference between numbers having…
Python1 Min Read LetuscrackonJanuary 23, 2025 Product of Unit digit and Tenth digit Product of Unit digit and Tenth digit: Given a number N where N >= 10, the program must print the product of the unit and tenth digit.…
Python1 Min Read LetuscrackonNovember 11, 2024 Sum of Tenth and Unit Digits The program must accept a number N and print the sum of tenth and unit digits. Input Format:The first line denotes the value of N. Output…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Even Sum of Unit Digit and Tenth Digit The program must accept two integers X and Y as the input. The program must print the integers having the sum of the tenth…
Python1 Min Read LetuscrackonJune 11, 2024 Multiply N with Unit Digit The program must accept a positive integer N and print the value of N multiplied with it’s unit digit. Boundary Condition(s):1 <= N…