paut.aoc
Type members
Classlikes
An abstract class for solving a problem from Advent of Code.
An abstract class for solving a problem from Advent of Code.
- Value parameters:
- day
the day of the year the problem is from
- expectedExampleSolution
the expected solution for the example input
- year
the year the problem is from
A class for representing the result of solving, or an attempt at solving, a problem from Advent of Code.
A class for representing the result of solving, or an attempt at solving, a problem from Advent of Code.
- Value parameters:
- day
the day in december which the problem is from
- part
one or two
- solution
a solution to the problem
- submitted
whether the solution was submitted to and verified on the Advent of Code website
- time
the time it took to solve the problem
- timestamp
the time the problem was solved
- year
the year which the problem is from
- Companion:
- object
A simple wrapper class that includes the result of an evaluation and the time (in seconds) it took to evaluate it
A simple wrapper class that includes the result of an evaluation and the time (in seconds) it took to evaluate it
- Value parameters:
- result
The final evaluation
- time
Time elapsed while evaluating, in seconds
- Companion:
- object