Skip to content

Commit

Permalink
README update
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Nov 21, 2023
1 parent 57f0de6 commit d67077d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Binary file added .github/readme/run.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,18 @@ After you create a new project based on the current template repository using th
.
├── README.md README file
├── build.gradle.kts Gradle configuration created with Kotlin DSL
├── gradle
│ └── wrapper Gradle Wrapper
├── gradle.properties Gradle configuration properties
├── gradlew *nix Gradle Wrapper script
├── gradlew.bat Windows Gradle Wrapper script
├── settings.gradle.kts Gradle project settings
├── gradle* Gradle wraper files
└── src
├── Day01.kt An empty implementation for the first AoC day
├── Day01.txt An empty file for the Day 01 input data
├── Day01_test.txt An optional Day 01 test input data used for checks
└── Utils.kt A set of utility methods shared across your days
```

> Note: All task input files are excluded from the repository with `.gitignore` – we should not post them publicly, as Eric Wastl asks for: [Tweet](https://twitter.com/ericwastl/status/1465805354214830081).
> **Note**
>
> All task input files (`src/*.txt`) are excluded from the repository with `.gitignore` – we should not post them publicly, as [Eric Wastl requested for](https://twitter.com/ericwastl/status/1465805354214830081).
When the first puzzle appears, go to the `Day01.kt` and for each `part1` and `part2` functions, provide an algorithm implementation using the `input` data loaded from the `src/Day01.txt` file.
This input data is common for both parts, and you can find it on the bottom of each day on the [Advent of Code][aoc] page.
Expand Down

0 comments on commit d67077d

Please sign in to comment.