Created
December 22, 2016 01:57
-
-
Save theburningmonk/30165bfc17152f5f4496c31d8ee27b33 to your computer and use it in GitHub Desktop.
Advent of Code (Day 21)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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