Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/patrickm663/advent-of-code-2022
https://github.com/patrickm663/advent-of-code-2022
advent-of-code-2022 julia
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/patrickm663/advent-of-code-2022
- Owner: patrickm663
- Created: 2022-12-01T19:50:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-16T15:21:06.000Z (almost 2 years ago)
- Last Synced: 2023-04-17T20:26:40.443Z (over 1 year ago)
- Topics: advent-of-code-2022, julia
- Language: Julia
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2022🌲
This repository serves to track my Advent of Code progress.I intend to use a variety of programming languages where possible to learn more about them, but currently using Julia for now.
## Day One⭐⭐
First attempt used Julia. The run time is 0.03s which is fairly good given 6 year old hardware. The approach taken used arrays, all native Julia so was fairly quick.## Day Two⭐⭐
Ran into an issue here with how Julia treats strings. It seems you cannot change a character at an index in place, so switched to the strategy of removing the space and treating it as a two character string. Both Part 1 and Part 2 mainly used if-else statements to assign scores. Run time was 0.02s and 0.0014s, all native Julia.## Day Three⭐⭐
## Day Four⭐⭐