Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edeak/adventofcode2024
Solutions for 2024 in Kotlin
https://github.com/edeak/adventofcode2024
advent-of-code advent-of-code-2024 advent-of-code-2024-kotlin advent-of-code-kotlin adventofcode2024 aoc aoc-2024 aoc-2024-in-kotlin kotlin
Last synced: 13 days ago
JSON representation
Solutions for 2024 in Kotlin
- Host: GitHub
- URL: https://github.com/edeak/adventofcode2024
- Owner: edeak
- License: wtfpl
- Created: 2024-11-28T21:33:41.000Z (24 days ago)
- Default Branch: main
- Last Pushed: 2024-12-06T07:32:01.000Z (17 days ago)
- Last Synced: 2024-12-06T08:25:44.847Z (16 days ago)
- Topics: advent-of-code, advent-of-code-2024, advent-of-code-2024-kotlin, advent-of-code-kotlin, adventofcode2024, aoc, aoc-2024, aoc-2024-in-kotlin, kotlin
- Language: Kotlin
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License: WTFPL](https://img.shields.io/badge/License-WTFPL-brightgreen.svg)](http://www.wtfpl.net/about/)
My solutions for challenges in Kotlin.
# AdventOfCode2024
Solutions for [AdventOfCode 2024](https://adventofcode.com/2024) in Kotlin# Creating all the files:
Create input files:
```shell
for i in {1..24}; do touch "$(printf "Day%02d.txt" $i)"; done
```Create solution files (assuming there is Day01.kt available):
```shell
for i in {2..25}; do cp Day01.kt "$(printf "Day%02d.kt" $i)"; done
```