Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/thexhr/advent-of-code

Code to solve "advent of code"
https://github.com/thexhr/advent-of-code

advent-of-code-2021 advent-of-code-2022 c

Last synced: 1 day ago
JSON representation

Code to solve "advent of code"

Awesome Lists containing this project

README

        

# Adevent of Code

Code I wrote for the Advent of Code - https://adventofcode.com/

Code is public domain, so use as you wish.

## C

*NOTE* You might find dragons in the code! This is ugly, insecure and usafe C code. I just hacked the advent for code for fun, not to write clean and secure code!

If you're on a BSD you can compile the code with

```
make foo
```

where foo is the name of the C file without the ending. Otherwise,
compile it as follows:

```
$ cc -Wall -Wextra foo.c
$ ./a.out
```

## Go

Several solutions are written in go. To run

```
$ go run 1.go
```