C Python TCS CodeVita2 Min Read LetuscrackonApril 18, 2025 Digit Pairs – TCS CodeVita The program must accept N three-digit numbers as the input. The program must find the bit score for all N numbers and then print the…
Python1 Min Read LetuscrackonApril 1, 2025 Check if 2 or 3 Digit Number Check if 2 or 3 Digit Number: Given an integer N as input, the program must print YES if the given integer N is a two digit or a…
Python1 Min Read LetuscrackonMarch 31, 2025 Four Digit Integers Divisible Four Digit Integers Divisible: The program must accept a string S containing only digits and an integer K as the input.…
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 21, 2025 Alphabet for Digit Alphabet for Digit: Given an integer N as input, the program must print the lower case alphabets (from a to i) in the position of the digits…
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 LetuscrackonFebruary 16, 2025 Print Next Even Digit Given a number N, the program must print the next even digit for each of the digits in N, Boundary Condition(s):1 <= N <= 999999999…