Move flutter app into root of repo

This commit is contained in:
2026-02-20 19:44:40 -06:00
parent 9f0342ba1a
commit 5f43ff3d4c
138 changed files with 262 additions and 759 deletions

12
lib/days_enum.dart Normal file
View File

@@ -0,0 +1,12 @@
enum AdventOfCodeDays {
day1(title: "Day 1"),
day2(title: "Day 2"),;
const AdventOfCodeDays({
required this.title
});
final String title;
}