Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/failedcode/adventofcode-2024-go


https://github.com/failedcode/adventofcode-2024-go

Last synced: 21 days ago
JSON representation

Awesome Lists containing this project

README

        

# Advent of Code 2024
https://adventofcode.com/2024

Solutions in [GO](https://go.dev/learn/)

## How to run

* Run the current day: `go run .`
* Run a specific day: `go run . --day=` e.g. `go run . --day=6`

## GO learnings

* There are no default values for function parameters
* string to int conversion requieres explicit `strconv.Atoi`
* `math.Abs` is only implemented for floats