Python1 Min Read LetuscrackonApril 11, 2026 Odd Even Row – Pattern Printing Given a value of N, where N is the number of rows, the program must print the character ‘*’ from left or right depending on…
Python1 Min Read LetuscrackonMarch 29, 2026 String Rotation Odd and Even Positions A string S and two integers M and N are passed as input. The program must rotate the characters present in the odd positions of the string M…
Python1 Min Read LetuscrackonMarch 7, 2026 Difference between sum of odd and even digits A number N is passed as input. The program must find the difference between sum of odd and even digits in the number and print the difference.…
Python1 Min Read LetuscrackonMarch 4, 2026 Remove the odd numbers A number N is passed as input. The program must remove all the odd digits in the passed number and display the number. If there are no…
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;…