Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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```