C1 Min Read LetuscrackonJanuary 6, 2026 Reverse the string value till last vowel Reverse the string value till last vowelGiven a string S, the program must reverse the string till last vowel. (All alphabets will be in…
C1 Min Read LetuscrackonJanuary 2, 2026 Pattern – Half Pyramid Reverse Given a positive integer value N as input, print the pattern as in the Example Input/Output section. Input Format:The first line contains N.…
C1 Min Read LetuscrackonDecember 18, 2025 K Alphabets in Reverse Order The program must accept a lowercase alphabet ch and an integer K as the input. The program must print K alphabets from ch in reverse…
Python1 Min Read LetuscrackonDecember 8, 2025 Reverse and remove letters in vowel positions Sharon does not like vowels. So she wants to remove vowels from any string. But her friend Jennie loves vowels and wants to retain vowels in…
Java1 Min Read LetuscrackonDecember 6, 2025 Reverse Number sign An integer value N is passed as the input. The program must reverse the sign of N and print -N as the output. Input Format:The first line…
C Java Python1 Min Read LetuscrackonDecember 4, 2025 Reverse words Given a string S as the input Write a program to print the reverse order of the words in the string S. Input Format:The first line contains S.…
Java Python1 Min Read LetuscrackonNovember 14, 2025 Reverse String Till Underscore String S is passed as the input to the program. S may or may not have a single underscore embedded in it. The program must reverse the String…
C1 Min Read LetuscrackonNovember 12, 2025 Reverse Order – print N to 1 A number N is passed as the input. The program must print the numbers from N to 1 (inclusive of N). Input Format: The first line denotes the…
Python1 Min Read LetuscrackonOctober 5, 2025 Binary Reverse Pairs The program must accept Noddintegers and print all possible pairs of integers (X, Y) where the binary representation of X…
Python1 Min Read LetuscrackonAugust 29, 2025 Last Two Bits in Reverse The program must accept an integer N as the input. The program must print the last two bits of N in reversed order as the output. Example…