-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinput.ts
33 lines (28 loc) · 878 Bytes
/
input.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { readFileSync } from "fs";
export function read(
year: number,
day: number,
options?: {
preserveSpaces?: boolean;
preserveNewlines?: boolean;
}
): string[][] {
let file = readFileSync(
`${year}/${dayString(day)}/${process.env["test"] ? "test" : "input"}`
).toString();
if (options?.preserveSpaces) {
file = file.replace(/\n$/, "");
} else {
file = file.trim();
}
const lines = file.split(options?.preserveNewlines ? /\n/ : /\n+/);
return lines.map((x: string) => {
const line = options?.preserveSpaces ? [x] : x.trim().split(/\s+/);
return line.map((value: string) => (value === "" ? "\n" : value));
});
}
export function dayString(day?: number | string): string | undefined {
if (day === undefined) return undefined;
let dayString = `${day}`;
return dayString.length === 1 ? `0${dayString}` : dayString;
}