Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/thecaptaincraken/advent-of-code-2023
- Owner: TheCaptainCraken
- Created: 2023-11-26T12:01:17.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-12T09:04:10.000Z (about 1 year ago)
- Last Synced: 2024-03-31T17:21:23.066Z (10 months ago)
- Language: Haskell
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 foldersBe sure to include:
- all the source files
- if you have some, build files and/or instructions to build