Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 711 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 711 Bytes

Advent of Code 2020 - matthewjhands attempt

This is my attempt at the Advent of Code 2020 Challenge. This year I'm attempting each day's challenge using Java 11, to reinforce some recent training. I'm also using the opportunity to try out VSCode's support of Java development on Windows using Microsofts' recommended Java Extension Pack.

Measuring solution performance using Powershell

You can use Measure-Command as a tool similar to Unix's time command to measure how long a solution takes to execute.

Measure-Command { java path\to\solution.java | Out-Default }