using System.Collections.Generic;
public static void Main()
Console.WriteLine($"Expected: True , Actual: {MustBeCharacter("stackoverflow?1234")}");
Console.WriteLine($"Expected: False , Actual: {MustBeCharacter("stackoverflow1234")}");
private static bool MustBeCharacter(string arg)
var specialChars = ".,?!*-+".ToCharArray();
return specialChars.Any(x => arg.Contains(x));