Skip to content

Instantly share code, notes, and snippets.

@aksnell
Created June 3, 2020 13:51
Show Gist options
  • Save aksnell/27aec3a298caf3801125d8c874bdba3c to your computer and use it in GitHub Desktop.
Save aksnell/27aec3a298caf3801125d8c874bdba3c to your computer and use it in GitHub Desktop.
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