18 lines
364 B
TypeScript
18 lines
364 B
TypeScript
|
import { solvables } from "../main.ts";
|
||
|
|
||
|
import type { Solvable } from "../solvable.ts";
|
||
|
import { readInput } from "../utils.ts";
|
||
|
|
||
|
class DayTwo implements Solvable {
|
||
|
input = readInput('02')
|
||
|
|
||
|
public part1(): DayTwo {
|
||
|
console.log("test")
|
||
|
return this
|
||
|
}
|
||
|
public part2(): DayTwo {
|
||
|
return this
|
||
|
}
|
||
|
}
|
||
|
|
||
|
solvables.push(new DayTwo())
|