Skip to content

Commit d67077d

Browse files
committed
README update
1 parent 57f0de6 commit d67077d

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/readme/run.png

35.6 KB
Loading

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,18 @@ After you create a new project based on the current template repository using th
3838
.
3939
├── README.md README file
4040
├── build.gradle.kts Gradle configuration created with Kotlin DSL
41-
├── gradle
42-
│ └── wrapper Gradle Wrapper
43-
├── gradle.properties Gradle configuration properties
44-
├── gradlew *nix Gradle Wrapper script
45-
├── gradlew.bat Windows Gradle Wrapper script
4641
├── settings.gradle.kts Gradle project settings
42+
├── gradle* Gradle wraper files
4743
└── src
4844
├── Day01.kt An empty implementation for the first AoC day
4945
├── Day01.txt An empty file for the Day 01 input data
5046
├── Day01_test.txt An optional Day 01 test input data used for checks
5147
└── Utils.kt A set of utility methods shared across your days
5248
```
5349

54-
> 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).
50+
> **Note**
51+
>
52+
> 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).
5553
5654
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.
5755
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.

0 commit comments

Comments
 (0)