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 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 LetuscrackonFebruary 10, 2025 Python Program To Check if N is Formed from M The program must accept two integers M and N as input. The program must print “YES” if an…
Python1 Min Read LetuscrackonNovember 30, 2024 Python Program To Check Combo Sum N integers are passed as input to the program. The program must print the count of the combination of the integers (1 or more integers) which…
Python1 Min Read LetuscrackonNovember 29, 2024 Python Program To Check Triplet Sum N integers are passed as input to the program. The program must print the count of triplets (combination of three integers) which add up to a…
Python1 Min Read LetuscrackonNovember 28, 2024 Check Sorted Order The program must accept N integers which are sorted in ascending order except one integer. But if that single integer R is…
Python1 Min Read LetuscrackonNovember 27, 2024 Python Program To Check Subsequence Of Two Strings The program must accept two string values S1 and S2 as the input. The program must print Found if S2 is a subsequence of S1. Else the program…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check Palindrome Nature of a Number The program must accept an integer N as the input. The task is to check whether the number is a palindrome. If the number is a palindrome, the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check for Increasing Order of Digits The program must accept an integer N as the input. The task is to check whether the digits in the number are in increasing order from left to…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Check if All Digits Are Perfect Squares The program must accept an integer N as the input. The task is to check whether all the individual digits in the number are perfect squares.…