UNPKG
expeditaet
Version:
latest (1.2.0)
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Advent of Code Solutions
github.com/MariannaBoyle/expeditaet.git
MariannaBoyle/expeditaet
expeditaet
/
solutions
/
typescript
/
2023
/
11
/
src
/
p2.ts
8 lines
(5 loc)
•
259 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ task }
from
'@alexaegis/advent-of-code-lib'
;
import
packageJson
from
'../package.json'
;
import
{ solver }
from
'./p1.js'
;
export
const
p2 = (
input
:
string
):
number
=>
solver
(
1_000_000
)(input);
await
task
(p2, packageJson.
aoc
);
// 10228230 ~104.48ms