In this episode, we change our strategy for parsing temperatures from String / Float parsing into parsing digits as an Int. We can do this because the input data is very constrained and always has a single decimal point. Parsing and storing these as integers means it's much faster to parse and all we need to do is divide by 10 at the very end. This ends saving us nearly 30s on the large data set.