mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
13 lines
250 B
C#
13 lines
250 B
C#
public class Kata
|
|
{
|
|
public static int FindShort(string s)
|
|
{
|
|
int shortest = s.Length;
|
|
|
|
string[] words = s.Split(' ');
|
|
foreach (string word in words)
|
|
if (word.Length < shortest) shortest = word.Length;
|
|
|
|
return shortest;
|
|
}
|
|
}
|