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…
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…
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…
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…
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…
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…
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…
LetuscrackonJune 10, 2024 Interlace Vowels & Consonants The program must accept a string S containing only alphabets as the input. The program must print all the vowels in the string S in…
LetuscrackonJune 10, 2024 Character Between Two Vowels Given a string S, Print only the characters which are surrounded by vowels on both sides, if no character matches the condition print -1.…
LetuscrackonJune 10, 2024 Check All Vowels Present The program must accept a string S. The program must print yes if all the vowels are present in S as the output. Else the program must print…