static string Technology(string post)
{
if (post.Contains("Twitter") || post.Contains("elon"))
{
return "loser";
}
else
{
return "cool";
}
}
static string Technology(string post)
{
if (post.Contains("Twitter") || post.Contains("elon"))
{
return "loser";
}
else
{
return "cool";
}
}
Unfortunately, when I ran this post through this code it returned “loser”.