C1 Min Read LetuscrackonAugust 12, 2025 Sum of Two Integers Equal to K The program must accept N integers and an integer K as the input. The program must print yes if the sum of any two integers among the N…
C Python1 Min Read LetuscrackonAugust 7, 2025 Integers – Equal to Index The program must accept N integers and print the integers which are equal to their index value as the output. If there is no such integer, the…
Python1 Min Read LetuscrackonJuly 17, 2025 First & Last K – Equal or Not The program must accept a string S and an integer K as the input. The program must print YES if the first K…
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…