Advent of Code 2018, Day 3
Part 1
There’s some parsing needed on the input file, and because there doesn’t seem much point in writing the parsing code myself, I used the text_io crate.
Also, I needed some representation of the rectangles, so I wrote a simple implementation with some tests for a method …