A collection of helper function I used to solve challenges from Advent of Code (AoC).
func GetInput(filePath string) (*os.File, error)
GetInput takes a path to a file and returns a pointer to that file.
func GetInputAsString(filePath string) (string, error)
GetInputAsString takes a path to a file and returns a string containing the content of the file.