
									 Problem
								
								
									 Solution
								
								
									 Submissions
								
								
							Number of Vowels in a String
								Certification: Basic Level
								Accuracy: 63.38%
								Submissions: 71
								Points: 5
							
							Write a Python program that counts the number of vowels (a, e, i, o, u) in a given string.
Example 1
- Input: string = "Hello World"
- Output: 3
- Explanation: - Step 1: Initialize a counter variable to 0.
- Step 2: Iterate through each character in the string.
- Step 3: Check if each character is a vowel (a, e, i, o, u) in case-insensitive manner.
- Step 4: The vowels in "Hello World" are 'e', 'o', 'o' (3 vowels).
- Step 5: Return the count of vowels: 3.
 
Example 2
- Input: string = "Python"
- Output: 1
- Explanation: - Step 1: Initialize a counter variable to 0.
- Step 2: Iterate through each character in the string.
- Step 3: Check if each character is a vowel (a, e, i, o, u) in case-insensitive manner.
- Step 4: The only vowel in "Python" is 'o' (1 vowel).
- Step 5: Return the count of vowels: 1.
 
Constraints
- 1 ≤ len(string) ≤ 10^6
- The string may contain uppercase and lowercase letters.
- The string contains printable ASCII characters.
- Time Complexity: O(n), where n is the length of the string
- Space Complexity: O(1), as it only uses a counter
Editorial
									
												
My Submissions
										All Solutions
									| Lang | Status | Date | Code | 
|---|---|---|---|
| You do not have any submissions for this problem. | |||
| User | Lang | Status | Date | Code | 
|---|---|---|---|---|
| No submissions found. | ||||
The following are the steps to count the number of vowels in a string:
- Iterate with a loop: Use a loop to check each character and count vowels.
- Use list comprehension: sum(1 for char in s if char.lower() in "aeiou").
- Use regular expressions: len(re.findall(r'[aeiouAEIOU]', s)).
- Convert to lowercase: Convert the string to lowercase for easier comparison.
