this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at d09cbade53a0d3e704dcbf42bd5df4d55ab4d307 13 lines 382 B view raw
1import { assertEquals } from "https://deno.land/std@0.208.0/assert/mod.ts"; 2import * as p1 from "./part1.ts"; 3import * as p2 from "./part2.ts"; 4 5Deno.test("part1", () => { 6 const examples = ["abc", "def"].join("\n"); 7 assertEquals(p1.answer(examples), 42); 8}); 9 10Deno.test("part2", () => { 11 const examples = ["abc", "def"].join("\n"); 12 assertEquals(p2.answer(examples), 42); 13});