Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/philippdrebes/adventofcode2023
Advent of Code 2023 challenges solved in Go. A focus on problem-solving and refining Go language skills.
https://github.com/philippdrebes/adventofcode2023
advent-of-code advent-of-code-2023 go golang learning playground
Last synced: about 2 months ago
JSON representation
Advent of Code 2023 challenges solved in Go. A focus on problem-solving and refining Go language skills.
- Host: GitHub
- URL: https://github.com/philippdrebes/adventofcode2023
- Owner: philippdrebes
- Created: 2023-10-31T18:19:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-05T20:11:06.000Z (about 1 year ago)
- Last Synced: 2024-12-03T00:08:29.735Z (about 2 months ago)
- Topics: advent-of-code, advent-of-code-2023, go, golang, learning, playground
- Language: Go
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2023 - Go Edition
This repository is my playground for solving the [Advent of Code 2023](https://adventofcode.com/2023) challenges using the Go programming language.
Unlike [my Advent of Code 2022 project](https://github.com/philippdrebes/AdventOfCode2022), where I focused on learning Rust, this year is all about problem-solving and refining my Go skills.## Goals
1. **Improve Go Skills**: Although I'm already familiar with Go, I aim to further deepen my understanding and capabilities with the language.
2. **Problem-Solving**: This year, the focus is strongly on sharpening problem-solving skills.## Project Structure
The project structure will be updated once finalized.
## Usage
To run the code for a specific day:
1. Navigate to the corresponding `dayXX` directory.
2. Run `go build` to compile the Go source file into an executable.
3. Run the resulting executable to solve the challenge.## Note
- This repository is focused on honing problem-solving abilities and perfecting Go language skills.
- Your suggestions for code improvement are welcome.