Skip to content

Instantly share code, notes, and snippets.

@Underdoge
Created March 2, 2017 20:21
Show Gist options
  • Save Underdoge/21c4556483413845218b56f112308189 to your computer and use it in GitHub Desktop.
Save Underdoge/21c4556483413845218b56f112308189 to your computer and use it in GitHub Desktop.
areEquallyStrong
function areEquallyStrong(yourLeft, yourRight, friendsLeft, friendsRight) {
return (((yourLeft==friendsLeft)||(yourLeft==friendsRight))&&((yourRight==friendsLeft)||(yourRight==friendsRight)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment