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…
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…
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…
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…
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…
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…
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.…
LetuscrackonJune 10, 2024 Check for Rectangle or Square The length L and breadth B of a rectangle is passed as input. If L is equal to B then the program must print “square”. Else it…
LetuscrackonJune 10, 2024 Check All Vowels Present The program must accept a string S. The program must print yes if all the vowels are present in S as the output. Else the program must print…
LetuscrackonJune 10, 2024 Check Repeated Alphabets The program must accept a string value S as the input. The program must print invalid if the alphabets are repeated continuously for more than…