mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-08 18:49:07 +01:00
17 lines
308 B
C#
17 lines
308 B
C#
using System.Text.RegularExpressions;
|
|
|
|
public static class Kata
|
|
{
|
|
public static int CountSmileys(string[] smileys)
|
|
{
|
|
var count = 0;
|
|
|
|
var regex = new Regex(@"[:;][-~]?[D\)]");
|
|
|
|
foreach (string smiley in smileys) {
|
|
if (regex.Match(smiley).Success) count++;
|
|
}
|
|
|
|
return count;
|
|
}
|
|
}
|