Skip to content

Instantly share code, notes, and snippets.

@RahmatSaeedi
Last active May 10, 2021 14:19
Show Gist options
  • Save RahmatSaeedi/ebd34c823bd4ff3bf117496b1ca046a6 to your computer and use it in GitHub Desktop.
Save RahmatSaeedi/ebd34c823bd4ff3bf117496b1ca046a6 to your computer and use it in GitHub Desktop.
CodeSignal - Arcade - Intro - JS - shapeArea
function shapeArea(n) {
return n**2 + (n-1)**2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment