Created
June 3, 2020 13:51
-
-
Save aksnell/27aec3a298caf3801125d8c874bdba3c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
public class Kata | |
{ | |
public static string AbbrevName(string name) | |
{ | |
return name.ToUpper().Split(" ").Aggregate((first, last) => first[0] + "." + last[0]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment