79320148

Date: 2024-12-31 14:20:40
Score: 1
Natty:
Report link
    public static bool containsCapital(string password)
    {
        var chars = password.ToCharArray();

        foreach(char ch in chars)
        {
            if(char.IsUpper(ch))
            {
                return true;
            }
        }

        return false;
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: waawaaa