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…
C1 Min Read LetuscrackonDecember 13, 2025 Numbers with Unit Digit Numbers with Unit DigitGiven two positive integers A and B and a digit U, the program must print all the integers from A to B (inclusive of A…
C1 Min Read LetuscrackonJuly 17, 2025 Matrix Unit Digit Swap The program must accept an integer matrix of size R*C, where C is even and swap the unit digits of the elements in columns 1 and 2, then 3 and…
Python1 Min Read LetuscrackonMay 25, 2025 Submatrix – Unit Digit Corner Submatrix – Unit Digit Corner: The program must accept an integer matrix of size R*C and a digit D as the input. The…
C Java Kickstart Python1 Min Read LetuscrackonMay 9, 2025 Remove Unit Digit The program must accept a number and remove the unit digit. Note: The number is greater than 9. Example Input/Output 1:Input:102 Output:10…
C Java Kickstart Python1 Min Read LetuscrackonMay 6, 2025 Print Unit Digit The program must accept a number and print its unit digit. Example Input/Output 1:Input:72 Output:2 Example Input/Output 2:Input:65 Output:5…
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…