Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 396 Bytes

README.md

File metadata and controls

8 lines (8 loc) · 396 Bytes

Advent of Code 2022 Solutions in C#

My rules I followed when working on the solutions.

  • Clean and readable code.
  • Refactor throughout the process, not just after.
  • Don't optimize prematurely, but don't do stupid stuff.
  • Use of Linq where appropriate.
  • Methods should not mutate their inputs, if needed use encapsulation.
  • Use new and advanced language features, but don't be too smart.