08 April 2017

differentSymbolsNaive

My solution:
int differentSymbolsNaive(string s) 
{
    return s.Distinct().Count();
}

Previous Next