Java1 Min Read LetuscrackonJanuary 2, 2026 First and Last Odd Digits Given N positive integers, the program must print the integers if the first and last digits are odd digits. Boundary Condition(s):1 <= N…
C1 Min Read LetuscrackonDecember 25, 2025 Smallest Possible Odd Integer The program must accept an integer N as the input. The program must print the smallest possible odd integer using all the digits in N as the…
C1 Min Read LetuscrackonDecember 16, 2025 Largest Possible Odd Integer The program must accept an integer N as the input. The program must print the largest possible odd integer using all the digits in N…
Python1 Min Read LetuscrackonNovember 30, 2025 Count Odd Numbers in an Interval Range Given two non-negative integers low and high. Return the count of odd numbers…
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…