adil192 / adventofcode2023

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

These are my solutions to the 2023 Advent of Code, written in Dart (the language that Flutter uses).

Also see my minor retheme of the Advent of Code website named Readable Advent of Code.

Directory structure

.
├── assets
│   └── day_n.txt # Puzzle input for day n
├── lib
│   └── day_n.dart # Solution for day n
└── test
    └── day_n_test.dart # Tests for solution of day n

Running the code

To run the code, you need to have Dart installed. You can either only install Dart (from here), or you can install Flutter (from here) which comes with Dart.

To run the code for a specific day n, run the following command:

dart lib/day_n.dart

And to run the tests for a specific day n, run the following command:

dart test test/day_n_test.dart

About


Languages

Language:Dart 100.0%