C2 Min Read LetuscrackonNovember 13, 2025 Interlace odd / even from A to B Two numbers A and B are passed as input. The program must print the odd numbers from A to B (inclusive of A and B) interlaced with the even…
C1 Min Read LetuscrackonOctober 24, 2025 Odd Length String – Middle Three Letters An odd length string S is passed as the input. The middle three letters of S must be printed as the output. Example 1;…
C1 Min Read LetuscrackonOctober 21, 2025 Odd Length String Diagonal Pattern An odd length string S of length is passed as the input. The program must print the string S as two diagonal as shown in the example…
C Java Python2 Min Read LetuscrackonOctober 12, 2025 Reduce Array – Remove Odd The program must accept an array of N even integers as the input. The program must print the output based on the following…
Python1 Min Read LetuscrackonSeptember 21, 2025 All Possible Odd Integers The program must accept an integer N as the input. The program must print the unique odd integers formed using all the digits…
Python1 Min Read LetuscrackonSeptember 1, 2025 Print Odd or Even The program must accept an integer N as the input. The program must print Odd if N is odd. Else the program must…
Python1 Min Read LetuscrackonJuly 29, 2025 Same Bits – Odd Positions The program must accept two integers X and Y as the input. The program must print an integer C whose binary…
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 22, 2025 Print Odd or Even (Using if-else) The program must accept an integer N as the input. The program must print Odd if N is odd. Else the program must…
C Java Kickstart Python1 Min Read LetuscrackonMay 20, 2025 Odd Even Mixed Accept two integers A and B as the input. – If A and B are even then print “EVEN” as the…