this repo has no description
0
fork

Configure Feed

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

Add timing to runner

tom.sherman.is 2382bc8e 086b84f8

verified
+2
+2
run.ts
··· 41 41 `Running ${bold(moduleName)} with part ${bold(String(part))}...`, 42 42 ); 43 43 44 + console.time("solveTime"); 44 45 let output; 45 46 switch (part) { 46 47 case "1": ··· 50 51 output = await module.solvePart2(input); 51 52 break; 52 53 } 54 + console.timeEnd("solveTime"); 53 55 54 56 console.log(bold("Got output:")); 55 57 console.log(output);