Snippets

TeamCOINSE CAVM/Anti-patterns

You are viewing an old version of this snippet. View the current version.
Revised by JUNHWI KIM 4849ad0
void case1(int a, int b, int c) {
  if (a > 0 && b > 0 && c > 0) {
    if (a + b == c * c) {
      return;
    } else {
      return;
    }
  } else {
    return;
  }
}
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.