Skip to content

Commit b9eab64

Browse files
arun-munagantisiriak
authored andcommitted
Correct vowels list (#55)
'n' is not a vowel
1 parent a40f772 commit b9eab64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Algorithms/Other/vowel_check.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Program
77
{
88
static void Main()
99
{
10-
char[] vowels = { 'a', 'e', 'i', 'o', 'u', 'n' };
10+
char[] vowels = { 'a', 'e', 'i', 'o', 'u' };
1111
var n = Convert.ToInt32(Console.ReadLine());
1212
if (n > 1 && n < 10000)
1313
{

0 commit comments

Comments
 (0)