Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/arcage/advent_of_code_2022

Solving "Advent of Code 2022" by using Crystal lang.
https://github.com/arcage/advent_of_code_2022

Last synced: about 1 month ago
JSON representation

Solving "Advent of Code 2022" by using Crystal lang.

Awesome Lists containing this project

README

        

# My Answers to "Advent of Code 2022"

This repository is record of my challenges to [Advent of Code 2022](https://adventofcode.com/2022).

I tried to solve puzzles by using [Crystal language](https://crystal-lang.org/) and make source code shortest as possible like [Code Golf](https://en.wikipedia.org/wiki/Code_golf).

Every codes expect to read input data from `STDIN` and write result to `STDOUT`.

## Current Code Size (part 1 / part 2)

- [Day 1](https://github.com/arcage/advent_of_code_2022/tree/main/day01) ( 73 byte / 84 byte)
- [Day 2](https://github.com/arcage/advent_of_code_2022/tree/main/day02) ( 79 byte / 83 byte)
- [Day 3](https://github.com/arcage/advent_of_code_2022/tree/main/day03) (118 byte / 113 byte)
- [Day 4](https://github.com/arcage/advent_of_code_2022/tree/main/day04) (121 byte / 114 byte)
- [Day 5](https://github.com/arcage/advent_of_code_2022/tree/main/day05) (307 byte / 301 byte)
- [Day 6](https://github.com/arcage/advent_of_code_2022/tree/main/day06) ( 94 byte / 98 byte)
- [Day 7](https://github.com/arcage/advent_of_code_2022/tree/main/day07) (435 byte / 442 byte)
- [Day 8](https://github.com/arcage/advent_of_code_2022/tree/main/day08) (362 byte / 310 byte)
- [Day 9](https://github.com/arcage/advent_of_code_2022/tree/main/day09) (277 byte / 325 byte)
- [Day 10](https://github.com/arcage/advent_of_code_2022/tree/main/day10) (141 byte / 238 byte)
- [Day 11](https://github.com/arcage/advent_of_code_2022/tree/main/day11) (521 byte / 544 byte)
- [Day 12](https://github.com/arcage/advent_of_code_2022/tree/main/day12) (447 byte / 475 byte)