Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mortigenus/advent-of-code

Solutions to https://adventofcode.com/ in Swift. Year 2018: days 1 to 14, year 2019: days 1 to 9, year 2020: days 1 to 25, year 2021: days 1 to 22
https://github.com/mortigenus/advent-of-code

advent-of-code advent-of-code-2018 advent-of-code-2019 advent-of-code-2020 advent-of-code-2021 advent-of-code-swift swift

Last synced: 26 days ago
JSON representation

Solutions to https://adventofcode.com/ in Swift. Year 2018: days 1 to 14, year 2019: days 1 to 9, year 2020: days 1 to 25, year 2021: days 1 to 22

Awesome Lists containing this project

README

        

Solutions for [Advent of Code](https://adventofcode.com) in Swift.

To run a solution from the command line you can do:
```bash
swift run -c release advent-of-code []
```

## 2021
- [Day 1](Sources/advent-of-code/Solutions/2021/Solution_2021_01.swift)
- [Day 2](Sources/advent-of-code/Solutions/2021/Solution_2021_02.swift)
- [Day 3](Sources/advent-of-code/Solutions/2021/Solution_2021_03.swift)
- [Day 4](Sources/advent-of-code/Solutions/2021/Solution_2021_04.swift)
- [Day 5](Sources/advent-of-code/Solutions/2021/Solution_2021_05.swift)
- [Day 6](Sources/advent-of-code/Solutions/2021/Solution_2021_06.swift)
- [Day 7](Sources/advent-of-code/Solutions/2021/Solution_2021_07.swift)
- [Day 8](Sources/advent-of-code/Solutions/2021/Solution_2021_08.swift)
- [Day 9](Sources/advent-of-code/Solutions/2021/Solution_2021_09.swift)
- [Day 10](Sources/advent-of-code/Solutions/2021/Solution_2021_10.swift)
- [Day 11](Sources/advent-of-code/Solutions/2021/Solution_2021_11.swift)
- [Day 12](Sources/advent-of-code/Solutions/2021/Solution_2021_12.swift)
- [Day 13](Sources/advent-of-code/Solutions/2021/Solution_2021_13.swift)
- [Day 14](Sources/advent-of-code/Solutions/2021/Solution_2021_14.swift)
- [Day 15](Sources/advent-of-code/Solutions/2021/Solution_2021_15.swift)
- [Day 16](Sources/advent-of-code/Solutions/2021/Solution_2021_16.swift)
- [Day 17](Sources/advent-of-code/Solutions/2021/Solution_2021_17.swift)
- [Day 18](Sources/advent-of-code/Solutions/2021/Solution_2021_18.swift)
- [Day 19](Sources/advent-of-code/Solutions/2021/Solution_2021_19.swift)
- [Day 20](Sources/advent-of-code/Solutions/2021/Solution_2021_20.swift)
- [Day 21](Sources/advent-of-code/Solutions/2021/Solution_2021_21.swift)
- [Day 22](Sources/advent-of-code/Solutions/2021/Solution_2021_22.swift)

## 2020
- [Day 1](Sources/advent-of-code/Solutions/2020/Solution_2020_01.swift)
- [Day 2](Sources/advent-of-code/Solutions/2020/Solution_2020_02.swift)
- [Day 3](Sources/advent-of-code/Solutions/2020/Solution_2020_03.swift)
- [Day 4](Sources/advent-of-code/Solutions/2020/Solution_2020_04.swift)
- [Day 5](Sources/advent-of-code/Solutions/2020/Solution_2020_05.swift)
- [Day 6](Sources/advent-of-code/Solutions/2020/Solution_2020_06.swift)
- [Day 7](Sources/advent-of-code/Solutions/2020/Solution_2020_07.swift)
- [Day 8](Sources/advent-of-code/Solutions/2020/Solution_2020_08.swift)
- [Day 9](Sources/advent-of-code/Solutions/2020/Solution_2020_09.swift)
- [Day 10](Sources/advent-of-code/Solutions/2020/Solution_2020_10.swift)
- [Day 11](Sources/advent-of-code/Solutions/2020/Solution_2020_11.swift)
- [Day 12](Sources/advent-of-code/Solutions/2020/Solution_2020_12.swift)
- [Day 13](Sources/advent-of-code/Solutions/2020/Solution_2020_13.swift)
- [Day 14](Sources/advent-of-code/Solutions/2020/Solution_2020_14.swift)
- [Day 15](Sources/advent-of-code/Solutions/2020/Solution_2020_15.swift)
- [Day 16](Sources/advent-of-code/Solutions/2020/Solution_2020_16.swift)
- [Day 17](Sources/advent-of-code/Solutions/2020/Solution_2020_17.swift)
- [Day 18](Sources/advent-of-code/Solutions/2020/Solution_2020_18.swift)
- [Day 19](Sources/advent-of-code/Solutions/2020/Solution_2020_19.swift)
- [Day 20](Sources/advent-of-code/Solutions/2020/Solution_2020_20.swift)
- [Day 21](Sources/advent-of-code/Solutions/2020/Solution_2020_21.swift)
- [Day 22](Sources/advent-of-code/Solutions/2020/Solution_2020_22.swift)
- [Day 23](Sources/advent-of-code/Solutions/2020/Solution_2020_23.swift)
- [Day 24](Sources/advent-of-code/Solutions/2020/Solution_2020_24.swift)
- [Day 25](Sources/advent-of-code/Solutions/2020/Solution_2020_25.swift)

## 2019
- [Day 1](Sources/advent-of-code/Solutions/2019/Solution_2019_01.swift)
- [Day 2](Sources/advent-of-code/Solutions/2019/Solution_2019_02.swift)
- [Day 3](Sources/advent-of-code/Solutions/2019/Solution_2019_03.swift)
- [Day 4](Sources/advent-of-code/Solutions/2019/Solution_2019_04.swift)
- [Day 5](Sources/advent-of-code/Solutions/2019/Solution_2019_05.swift)
- [Day 6](Sources/advent-of-code/Solutions/2019/Solution_2019_06.swift)
- [Day 7](Sources/advent-of-code/Solutions/2019/Solution_2019_07.swift)
- [Day 8](Sources/advent-of-code/Solutions/2019/Solution_2019_08.swift)
- [Day 9](Sources/advent-of-code/Solutions/2019/Solution_2019_09.swift)

## 2018
- [Day 1](Sources/advent-of-code/Solutions/2018/Solution_2018_01.swift)
- [Day 2](Sources/advent-of-code/Solutions/2018/Solution_2018_02.swift)
- [Day 3](Sources/advent-of-code/Solutions/2018/Solution_2018_03.swift)
- [Day 4](Sources/advent-of-code/Solutions/2018/Solution_2018_04.swift)
- [Day 5](Sources/advent-of-code/Solutions/2018/Solution_2018_05.swift)
- [Day 6](Sources/advent-of-code/Solutions/2018/Solution_2018_06.swift)
- [Day 7](Sources/advent-of-code/Solutions/2018/Solution_2018_07.swift)
- [Day 8](Sources/advent-of-code/Solutions/2018/Solution_2018_08.swift)
- [Day 9](Sources/advent-of-code/Solutions/2018/Solution_2018_09.swift)
- [Day 10](Sources/advent-of-code/Solutions/2018/Solution_2018_10.swift)
- [Day 11](Sources/advent-of-code/Solutions/2018/Solution_2018_11.swift)
- [Day 12](Sources/advent-of-code/Solutions/2018/Solution_2018_12.swift)
- [Day 13](Sources/advent-of-code/Solutions/2018/Solution_2018_13.swift)
- [Day 14](Sources/advent-of-code/Solutions/2018/Solution_2018_14.swift)