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