Python1 Min Read LetuscrackonJune 9, 2024 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 LetuscrackonJune 9, 2024 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 LetuscrackonJune 9, 2024 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 LetuscrackonJune 9, 2024 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 LetuscrackonJune 8, 2024 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 LetuscrackonJune 8, 2024 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 LetuscrackonJune 7, 2024 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…