mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
19 lines
319 B
C#
19 lines
319 B
C#
|
using System;
|
||
|
using System.Linq;
|
||
|
|
||
|
public static class Kata
|
||
|
{
|
||
|
public static int GetVowelCount(string str)
|
||
|
{
|
||
|
int vowelCount = 0;
|
||
|
const string vowels = "aeiou";
|
||
|
|
||
|
foreach (char x in str)
|
||
|
{
|
||
|
if (vowels.Contains(x)) vowelCount++;
|
||
|
}
|
||
|
|
||
|
return vowelCount;
|
||
|
}
|
||
|
}
|