Skip to content

Instantly share code, notes, and snippets.

@tjdevries
Created December 2, 2022 16:51
Show Gist options
  • Select an option

  • Save tjdevries/45665d4f857b573a430032df30c0f18a to your computer and use it in GitHub Desktop.

Select an option

Save tjdevries/45665d4f857b573a430032df30c0f18a to your computer and use it in GitHub Desktop.
#!/usr/bin/awk -f
/Y/ { s += 3 }
/Z/ { s += 6 }
/A Y|B X|C Z/ { s += 1 }
/B Y|C X|A Z/ { s += 2 }
/C Y|A X|B Z/ { s += 3 }
END { print s }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment