Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mortigenus/advent-of-code
- Owner: mortigenus
- License: mit
- Created: 2019-05-08T10:29:16.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-12-22T19:55:23.000Z (about 3 years ago)
- Last Synced: 2024-11-07T13:56:37.699Z (3 months ago)
- Topics: advent-of-code, advent-of-code-2018, advent-of-code-2019, advent-of-code-2020, advent-of-code-2021, advent-of-code-swift, swift
- Language: Swift
- Homepage:
- Size: 422 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)