mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
18 lines
319 B
C#
18 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;
|
|
}
|
|
}
|