import { NEWLINE } from '@alexaegis/advent-of-code-lib/regex';

export const parse = (input: string): string[] => input.split(NEWLINE);
