79819172

Date: 2025-11-13 16:46:03
Score: 2
Natty:
Report link
if (StateA)
{
    DoSomething();
}
else if (StateB)
{
    DoSomething();
    DoSomethingElse();
}

Is the same as:


DoSomething();
if (StateB)
{
    DoSomethingElse();
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: Wery848