Skip to content

Commit

Permalink
Merry Christmas!
Browse files Browse the repository at this point in the history
  • Loading branch information
dancarroll committed Dec 25, 2024
1 parent cf280d6 commit 2476e2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/day25.dart
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import 'package:aoc_2024/lib.dart';
import 'package:aoc_2024/day25/part_1.dart' as part1;
import 'package:aoc_2024/day25/part_2.dart' as part2;

Future<void> main(List<String> arguments) async {
await runDay(
day: Day.day25,
part1: part1.calculate,
part2: (_) => Future.value(0),
part2: part2.calculate,
);
}
6 changes: 6 additions & 0 deletions lib/day25/part_2.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import 'dart:io';

/// Deliver the chronicle!
Future<String> calculate(File file) async {
return 'Merry Christmas!';
}

0 comments on commit 2476e2d

Please sign in to comment.