Python3 Min Read LetuscrackonJune 5, 2025 Sort Digits in Submatrices Sort Digits in Submatrices: The program must accept an integer matrix of size R*C as the input. The matrix contains only digits…
C Java Kickstart Python1 Min Read LetuscrackonMay 18, 2025 Print Last Four Digits The program must accept an integer N as the input. The program must print the last four digits in N as the output. Example…
Python1 Min Read LetuscrackonApril 22, 2025 Maximum Sum – Equal Digits Sum Maximum Sum – Equal Digits Sum: The program must accept N integers as the input. The program must print the maximum sum of two…
Python1 Min Read LetuscrackonApril 9, 2025 Sum of Digits – Divisible by K Sum of Digits – Divisible by K: The program must accept two integers N and K as the input. The program must print…
Python1 Min Read LetuscrackonMarch 22, 2025 Check First & Last Two Digits Check First & Last Two Digits: Accept a number N and print “yes” if the first two digits and the last two digits are same,…
Python1 Min Read LetuscrackonMarch 17, 2025 Sum of Digits is Even or Odd Sum of Digits is Even or Odd: Given an integer N as input, the program must print Yes if the sum of digits in a given number is…
Python1 Min Read LetuscrackonMarch 13, 2025 Number – X Largest Digits Ascending Number – X Largest Digits Ascending: Accept a number N and print the first X largest digits in N in ascending order. Input Format:The…
C Python1 Min Read LetuscrackonJanuary 16, 2025 Print Largest Even Number – Digits Print Largest Even Number – Digits: Given a number N as the input, print the largest even number E that can be formed using the digits…
Python1 Min Read LetuscrackonDecember 28, 2024 First and Last X Digits First and Last X Digits: Given a number N, print the first and last X digits of the number. Input Format:The first line contains N.The second…
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…