Skip to content

Instantly share code, notes, and snippets.

@theburningmonk
Created December 22, 2016 01:57
Show Gist options
  • Save theburningmonk/30165bfc17152f5f4496c31d8ee27b33 to your computer and use it in GitHub Desktop.
Save theburningmonk/30165bfc17152f5f4496c31d8ee27b33 to your computer and use it in GitHub Desktop.
Advent of Code (Day 21)
type Direction = Left | Right
type Instruction =
| SwapPos of int * int
| SwapLetter of char * char
| Rotate of Direction * int
| RotateBasedOn of char
| Reverse of int * int
| Move of int * int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment