Python1 Min Read LetuscrackonMarch 8, 2025 Atleast N Vowels Program in Python Atleast N Vowels: A string S is passed as the input to the program along with a positive integer value N. The program must print Yes if the…
Python1 Min Read LetuscrackonMarch 6, 2025 Two Strings – Swap Vowels Two Strings – Swap Vowels: The program must accept two string values S1 and S2 as the input. The program must swap vowels in the first…
C1 Min Read LetuscrackonFebruary 17, 2025 Toggle Consonants Adjacent to Vowels The program must accept a string S containing only alphabets both in lower and upper case. The program must toggle the case of the consonants…
Python1 Min Read LetuscrackonNovember 28, 2024 Python Program To Find Sub-strings at least K vowels A string S of length L and an integer K is passed as the input. The program must sort and print the count of all the unique sub-strings (with…
Python1 Min Read LetuscrackonNovember 12, 2024 Python Program to Print All Vowels Accept a string S as the input and print all the vowels in S as the output. If there is no vowel in S then the program must…
Python1 Min Read LetuscrackonJune 12, 2024 Consecutive Vowels Count Given a string S1, print the count C which represents the number of times a vowel is followed by another vowel in the string S1. Input…
C1 Min Read LetuscrackonJune 12, 2024 Reverse String – Vowels Retain Same Position Given a string S1 as the input, the program must reverse the string, keeping the vowels in the same position. Input Format:The first line…
Java1 Min Read LetuscrackonJune 12, 2024 String With Most Vowels Two Strings S1 and S2 are given as input. The program must print the string with the most number of vowels. If two strings have the same…
C1 Min Read LetuscrackonJune 11, 2024 String – Reverse Vowels Given a string S, reverse only the vowels in the string S and print the resultant string R as the output. The consonants must maintain their…
Python1 Min Read LetuscrackonJune 11, 2024 String – Vowels Position Sum Accept a String S as the input. The program must print the sum of the positions of the vowels in S. If the string does not contain…