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 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 LetuscrackonMay 30, 2025 Split String – Equal Unique Count Split String – Equal Unique Count: The program must accept a string S as the input. The program must print the number of ways…
C Java Kickstart Python1 Min Read LetuscrackonMay 10, 2025 Not Equal to Zero The program must accept a number and print yes if it is NOT equal to zero. Else it must print no. Example Input/Output 1:Input:0 Output:no…
C Java Kickstart Python1 Min Read LetuscrackonMay 3, 2025 Two Numbers Equal The program must accept two numbers and print yes if they are equal. Else the program must print no 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 13, 2025 Three Parts – Equal Sum Three Parts – Equal Sum: The program must accept an integer array of size N as the input. The program must…
Python1 Min Read LetuscrackonJanuary 28, 2025 Sum of Values Less Than or Equal to X Sum of Values Less Than or Equal to X: A set of N positive integers are passed as the input. Another number X which may or may not be present…
Python1 Min Read LetuscrackonDecember 30, 2024 Swap Integers – Equal Sum Matrices Swap Integers – Equal Sum Matrices: The program must accept two integer matrices M1 and M2 of equal size RxC as the input. If it is…