C Python1 Min Read LetuscrackonAugust 5, 2025 Check Sorted Array – Descending Order The program must accept N integer values and check if they are sorted in descending order or not. Input : 5834 700 53 45 12 Output : yes Here…
C Kickstart1 Min Read LetuscrackonJune 30, 2025 Check If Tenth Digit is Odd or Even (Using if-else) The program must accept an integer N as the input. The program must print Odd if the tenth digit is odd. Else the…
C Kickstart1 Min Read LetuscrackonJune 25, 2025 Check if X is Greater than or Equal to Y (Using Ternary Operator) Accept two numbers X and Y as the input. The program must print YES if X is greater than or equal to Y. Else the…
C Kickstart1 Min Read LetuscrackonJune 23, 2025 Check if X is Less than Y (Boolean) Accept two integers X and Y as input. The program must print 1 if X is less than Y. Else…
C Kickstart1 Min Read LetuscrackonJune 23, 2025 Check If Two Integers are Equal (Using if-else) The program must accept two integers X and Y as the input. The program must print Equal if X and Y are equal.…
C Kickstart1 Min Read LetuscrackonJune 17, 2025 Check if X is Less than or Equal to Y (Using Ternary Operator) Accept two numbers X and Y as the input. The program must print YES if X is less than or equal to Y. Else 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 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…