Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/thecaptaincraken/advent-of-code-2023

Solutions for Advent of Code 2023. Made with ❤️ by me and my friends.
https://github.com/thecaptaincraken/advent-of-code-2023

Last synced: about 1 month ago
JSON representation

Solutions for Advent of Code 2023. Made with ❤️ by me and my friends.

Awesome Lists containing this project

README

        

# Advent of Code 2023

> This repo will contain solutions for [ Advent of Code 2023](https://adventofcode.com/). If you want to join me simply continue reading. :rocket:
> This repo is incomplete

## How to contribute

1. If you're a collaborator, create a new branch named like `day5-pietro-rust`. If you're not a collaborator, fork the repo.
2. Create the necessary folders (see [the folder structure](#folder-structure)).
3. Solve the problem(s) :grinning:
4. Open a PR and be sure to fill in the template with the relevant information.

If you followed all the steps correctly, your PR should be approved in less than a day. Bonus points if you leave some comments in your code to explain it. :heart:

## Folder structure

>In order to have a clean repo, the folder structure will be like this.

```plain
.
└── day_69/
├── holy_c/
│ ├── part_1/
│ │ └── main.hc
│ ├── part_2/
│ │ └── main.hc
│ ├── how_to_build.txt // markdown is good too
│ └── .gitignore // if you need
├── c/
│ ├── part_1/
│ │ └── main.c
│ ├── part_2/
│ │ └── main.c
│ ├── Makefile
│ └── lib/
│ ├── lib.h
│ └── lib.c
└── problem.md
```

Be sure to **NOT** include:

- executable files
- input files
- test cases
- solutions (the output of your program(s))
- editor specific files and/or folders

Be sure to include:

- all the source files
- if you have some, build files and/or instructions to build