Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pin2t/aoc2023
Advent of Code 2023
https://github.com/pin2t/aoc2023
advent-of-code advent-of-code-2023 advent-of-code-2023-go advent-of-code-2023-kotlin adventofcode aoc aoc-2023-in-kotlin aoc2023 go golang kotlin
Last synced: about 2 months ago
JSON representation
Advent of Code 2023
- Host: GitHub
- URL: https://github.com/pin2t/aoc2023
- Owner: pin2t
- License: mit
- Created: 2023-12-01T06:38:35.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-15T15:04:46.000Z (about 2 months ago)
- Last Synced: 2024-11-15T16:19:16.430Z (about 2 months ago)
- Topics: advent-of-code, advent-of-code-2023, advent-of-code-2023-go, advent-of-code-2023-kotlin, adventofcode, aoc, aoc-2023-in-kotlin, aoc2023, go, golang, kotlin
- Language: Go
- Homepage: https://adventofcode.com/2023
- Size: 248 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2023
This is Advent of Code solutions in Kotlin and Go. ```inputs``` directory contains **my** inputs, yours will be different
## How to run
Kotlin script files```kotlin 01.kts < inputs/01.txt```
day 23 kotlin script solution requires stack increase
```kotlin -J-Xss2m 23.kts < inputs/23.txt```
Kotlin files (kotlin native compiler is used and should be installed)
```./kotlin-run 16.kt < inputs/16.txt```
Go files
```go run 01.go < inputs/01.txt```