C2 Min Read LetuscrackonJune 11, 2024 Max Equal Sum of Cube Numbers in N Stacks There are several cubes placed in N stacks. Each cube has a number K (where K is from 1 to 99) printed on all the sides. Each of these N…
C1 Min Read LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 LetuscrackonJune 7, 2024 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 6, 2024 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 6, 2024 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 6, 2024 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…