vibing subs
I need help with my project
``` cs
public static bool nihoa(string passwords)
{
string qwewty = "1234567890qwertyuiopasdfghjklzxcvbnm";
bool qwerty = true;
for (int i = 0; i < passwords.Length - 2; i++)
{
for (int n = 0; n < qwewty.Length - 2; n++)
{
if (passwords.Substring(i, 3).ToLower() == qwewty.Substring(n, 3).ToLower())
{
qwerty = false;
break;
}
}
}
return qwerty;
}
20 replies